diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index b4b93ff..1666fbe 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -13,7 +13,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2b7a73..ec5c349 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # this is important, otherwise it won't checkout the full tree (i.e. no previous tags) - name: Set up Go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb0626a..e337638 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6