Skip to content

Commit 3922526

Browse files
Merge pull request #27572 from containers/renovate/actions-checkout-6.x
[skip-ci] Update actions/checkout action to v6
2 parents fac259e + a23b90b commit 3922526

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/check_cirrus_cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
# This is where the scripts live
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848
with:
4949
repository: containers/podman
5050
ref: 'main'

.github/workflows/dev-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Bump to -dev
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
ref: ${{ github.ref_name }}
1414
token: ${{ secrets.PODMANBOT_TOKEN }}
@@ -80,7 +80,7 @@ jobs:
8080
env:
8181
GH_TOKEN: ${{ github.token }}
8282
steps:
83-
- uses: actions/checkout@v5
83+
- uses: actions/checkout@v6
8484
with:
8585
ref: main
8686
token: ${{ secrets.PODMANBOT_TOKEN }}

.github/workflows/first_contrib_cert_generator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# Step 2: Checkout the repository containing the certificate HTML file.
5757
- name: Checkout containers/automation repository
5858
if: ${{ github.event_name == 'workflow_dispatch' || steps.check_first_pr.outputs.is_first_pr == 'true' }}
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060
with:
6161
repository: containers/automation
6262
path: automation-repo

.github/workflows/mac-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
steps.check.outputs.buildarm == 'true' ||
9797
steps.check.outputs.builduniversal == 'true' ||
9898
steps.actual_dryrun.outputs.dryrun == 'true'
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100
with:
101101
ref: ${{steps.getversion.outputs.version}}
102102
- name: Set up Go

.github/workflows/machine-os-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: |
6666
pip3 install git+https://github.com/packit/wait-for-copr.git@main
6767
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
if: steps.getversion.outputs.update == 'true'
7070
id: checkout
7171
with:

.github/workflows/release-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
fi
100100
101101
- name: Checkout Version
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
with:
104104
ref: ${{steps.getversion.outputs.version}}
105105

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
needs: check
6767
steps:
6868
- name: Checkout Version
69-
uses: actions/checkout@v5
69+
uses: actions/checkout@v6
7070
with:
7171
ref: ${{needs.check.outputs.version}}
7272
- name: Set up Go
@@ -103,7 +103,7 @@ jobs:
103103
KEYCHAIN_PWD: ${{ secrets.MACOS_CI_KEYCHAIN_PWD }}
104104
steps:
105105
- name: Checkout Version
106-
uses: actions/checkout@v5
106+
uses: actions/checkout@v6
107107
with:
108108
ref: ${{needs.check.outputs.version}}
109109
- name: Set up Go
@@ -161,7 +161,7 @@ jobs:
161161
}
162162
Write-Output "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
163163
- name: Checkout Podman
164-
uses: actions/checkout@v5
164+
uses: actions/checkout@v6
165165
- name: Download Windows zip artifact
166166
uses: actions/download-artifact@v6
167167
- name: Set up Go
@@ -262,7 +262,7 @@ jobs:
262262
VERSION: ${{needs.check.outputs.version}}
263263
steps:
264264
- name: Checkout Version
265-
uses: actions/checkout@v5
265+
uses: actions/checkout@v6
266266
with:
267267
ref: ${{needs.check.outputs.version}}
268268
- name: Get release notes

.github/workflows/update-podmanio.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
env:
6666
GH_TOKEN: ${{ secrets.PODMANBOT_TOKEN }}
6767

68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
if: >-
7070
steps.getversion.outputs.notRC == 'true' &&
7171
steps.checkpr.outputs.prexists == 'false'

.github/workflows/upload-win-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Note this purposefully checks out the same branch the action runs in, as the
5454
# installer build script is designed to support older releases (uses the archives
5555
# on the release tag).
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
# This step is super-duper critical for the built/signed windows installer .exe file.
5858
# It ensures the referenced $version github release page does NOT already contain
5959
# this file. Windows assigns a UUID to the installer at build time, it's assumed

0 commit comments

Comments
 (0)