diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 79e801a7a..499b4e0e3 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }} steps: - name: Checkout Source - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -37,7 +37,7 @@ jobs: runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }} steps: - name: Checkout Source - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -56,7 +56,7 @@ jobs: runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }} steps: - name: Checkout Source - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 09648d2bb..1fa0b5725 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -14,7 +14,7 @@ jobs: if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'jfrog/jfrog-client-go' steps: - name: Checkout PR code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 723e6ccdf..cc4853e53 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: labels: "safe to test" - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -45,7 +45,7 @@ jobs: runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -79,7 +79,7 @@ jobs: - name: Checkout code if: matrix.os.name != 'macos' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -121,7 +121,7 @@ jobs: - name: Checkout code if: matrix.os.name != 'macos' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -157,7 +157,7 @@ jobs: - name: Checkout code if: matrix.os.name != 'macos' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} @@ -180,7 +180,7 @@ jobs: runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} diff --git a/.github/workflows/update-jf-dependencies.yml b/.github/workflows/update-jf-dependencies.yml index 6bdfa72ae..1c8c520f6 100644 --- a/.github/workflows/update-jf-dependencies.yml +++ b/.github/workflows/update-jf-dependencies.yml @@ -17,7 +17,7 @@ jobs: run: echo "timestamp=$(date +%Y%m%d%H%M%S)" >> $GITHUB_OUTPUT - name: Checkout main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: master token: ${{ secrets.GITHUB_TOKEN }}