diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab1274ef69..f27b419e51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: sudo -E apt update && sudo -E apt install -y make - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: build run: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 94dfb79ee0..d5a1277b86 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - if: ${{ matrix.language == 'go' }} uses: actions/setup-go@v6.0.0 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 11891fa151..f6a7ba3783 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -36,12 +36,12 @@ jobs: -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ "${{ github.event.pull_request.statuses_url }}" if: github.event_name == 'pull_request' - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: github.event_name == 'push' && steps.setup.outputs.has_token == 'true' with: fetch-depth: 0 token: '${{ secrets.GO_TOKEN }}' - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: github.event_name == 'pull_request' || steps.setup.outputs.has_token != 'true' with: fetch-depth: 0 diff --git a/.github/workflows/issue_reviver.yml b/.github/workflows/issue_reviver.yml index 4b3897fd22..076a4672e1 100644 --- a/.github/workflows/issue_reviver.yml +++ b/.github/workflows/issue_reviver.yml @@ -11,7 +11,7 @@ jobs: permissions: issues: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: github.repository == 'google/gvisor' - run: make run TARGETS="//tools/github" ARGS="-path=. revive" if: github.repository == 'google/gvisor'