diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 6fc6d7075..05576a9c3 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -16,7 +16,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 }} @@ -34,7 +34,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 }} @@ -53,7 +53,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 df760baa7..64895378e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,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 }} @@ -42,7 +42,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 }} @@ -76,7 +76,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 }} @@ -118,7 +118,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 }} @@ -154,7 +154,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 }} @@ -177,7 +177,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 }}