Skip to content

Commit 1cff762

Browse files
committed
Merge pull request #12020 from google:dependabot/github_actions/actions/checkout-5
PiperOrigin-RevId: 794157122
2 parents be7706f + 73b334b commit 1cff762

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sudo -E apt update && sudo -E apt install -y make
2121
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: build
2626
run: |

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- if: ${{ matrix.language == 'go' }}
4545
uses: actions/setup-go@v5.5.0

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
3737
"${{ github.event.pull_request.statuses_url }}"
3838
if: github.event_name == 'pull_request'
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
if: github.event_name == 'push' && steps.setup.outputs.has_token == 'true'
4141
with:
4242
fetch-depth: 0
4343
token: '${{ secrets.GO_TOKEN }}'
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
if: github.event_name == 'pull_request' || steps.setup.outputs.has_token != 'true'
4646
with:
4747
fetch-depth: 0

.github/workflows/issue_reviver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
issue_reviver:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
if: github.repository == 'google/gvisor'
1414
- run: make run TARGETS="//tools/github" ARGS="-path=. revive"
1515
if: github.repository == 'google/gvisor'

0 commit comments

Comments
 (0)