Skip to content

Commit 22d50c5

Browse files
authored
Merge pull request #482 from containers/renovate/actions-checkout-6.x
[skip-ci] Update actions/checkout action to v6
2 parents abf1513 + 39e1ade commit 22d50c5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/opendownstream-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: 'Checkout Self'
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
# Because we use pull_request_target, this checks out the code from the default branch, NOT the PR branch
1919

2020
- name: 'Setup Go'
@@ -23,7 +23,7 @@ jobs:
2323
go-version: 'stable'
2424

2525
- name: 'Checkout forked buildah'
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
repository: 'podmanbot/buildah' # The target repository
2929
path: 'buildah' # Checkout into a sub-directory

.github/workflows/validate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
codespell:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: install deps
2222
# Version of codespell bundled with Ubuntu is way old, so use pip.
2323
run: pip install --break-system-packages codespell==v2.4.1
@@ -30,7 +30,7 @@ jobs:
3030
run:
3131
working-directory: ./common
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 2
3636
- uses: actions/setup-go@v6
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
GIT_CHECK_EXCLUDE: "./vendor"
7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777
with:
7878
# By default github actions creates a merge commit which fails the validation,
7979
# we only must validate the actual commits of the author.
@@ -93,7 +93,7 @@ jobs:
9393
go-vendor:
9494
runs-on: ubuntu-24.04
9595
steps:
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
- uses: actions/setup-go@v6
9898
with:
9999
go-version: 1.25.x

0 commit comments

Comments
 (0)