From 4bb4cf62cb8254da02993f8cef3d07359b576f0a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 13:22:56 +0000 Subject: [PATCH] [skip-ci] Update actions/checkout action to v5 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/check_cirrus_cron.yml | 2 +- .github/workflows/dev-bump.yml | 4 ++-- .github/workflows/mac-pkg.yml | 2 +- .github/workflows/machine-os-pr.yml | 2 +- .github/workflows/release-artifacts.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/update-podmanio.yml | 2 +- .github/workflows/upload-win-installer.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/check_cirrus_cron.yml b/.github/workflows/check_cirrus_cron.yml index 527b8a14b2..a713426821 100644 --- a/.github/workflows/check_cirrus_cron.yml +++ b/.github/workflows/check_cirrus_cron.yml @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest steps: # This is where the scripts live - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: containers/podman ref: 'main' diff --git a/.github/workflows/dev-bump.yml b/.github/workflows/dev-bump.yml index 53abcecdcc..4f5af732b1 100644 --- a/.github/workflows/dev-bump.yml +++ b/.github/workflows/dev-bump.yml @@ -8,7 +8,7 @@ jobs: name: Bump to -dev runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.ref_name }} token: ${{ secrets.PODMANBOT_TOKEN }} @@ -80,7 +80,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: main token: ${{ secrets.PODMANBOT_TOKEN }} diff --git a/.github/workflows/mac-pkg.yml b/.github/workflows/mac-pkg.yml index 7b45c91318..68ad069d98 100644 --- a/.github/workflows/mac-pkg.yml +++ b/.github/workflows/mac-pkg.yml @@ -96,7 +96,7 @@ jobs: steps.check.outputs.buildarm == 'true' || steps.check.outputs.builduniversal == 'true' || steps.actual_dryrun.outputs.dryrun == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{steps.getversion.outputs.version}} - name: Set up Go diff --git a/.github/workflows/machine-os-pr.yml b/.github/workflows/machine-os-pr.yml index b2900763de..b6d065d2a9 100644 --- a/.github/workflows/machine-os-pr.yml +++ b/.github/workflows/machine-os-pr.yml @@ -65,7 +65,7 @@ jobs: run: | pip3 install git+https://github.com/packit/wait-for-copr.git@main - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: steps.getversion.outputs.update == 'true' id: checkout with: diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index a208a5fb99..cc378d1731 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -99,7 +99,7 @@ jobs: fi - name: Checkout Version - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{steps.getversion.outputs.version}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e20ae2af88..11d4174333 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: needs: check steps: - name: Checkout Version - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{needs.check.outputs.version}} - name: Set up Go @@ -103,7 +103,7 @@ jobs: KEYCHAIN_PWD: ${{ secrets.MACOS_CI_KEYCHAIN_PWD }} steps: - name: Checkout Version - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{needs.check.outputs.version}} - name: Set up Go @@ -161,7 +161,7 @@ jobs: } Write-Output "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append - name: Checkout Podman - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download Windows zip artifact uses: actions/download-artifact@v5 - name: Set up Go @@ -240,7 +240,7 @@ jobs: VERSION: ${{needs.check.outputs.version}} steps: - name: Checkout Version - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{needs.check.outputs.version}} - name: Get release notes diff --git a/.github/workflows/update-podmanio.yml b/.github/workflows/update-podmanio.yml index 50f99a401f..5dcbf57874 100644 --- a/.github/workflows/update-podmanio.yml +++ b/.github/workflows/update-podmanio.yml @@ -65,7 +65,7 @@ jobs: env: GH_TOKEN: ${{ secrets.PODMANBOT_TOKEN }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: >- steps.getversion.outputs.notRC == 'true' && steps.checkpr.outputs.prexists == 'false' diff --git a/.github/workflows/upload-win-installer.yml b/.github/workflows/upload-win-installer.yml index bb375c13e1..76559b99f4 100644 --- a/.github/workflows/upload-win-installer.yml +++ b/.github/workflows/upload-win-installer.yml @@ -53,7 +53,7 @@ jobs: # Note this purposefully checks out the same branch the action runs in, as the # installer build script is designed to support older releases (uses the archives # on the release tag). - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # This step is super-duper critical for the built/signed windows installer .exe file. # It ensures the referenced $version github release page does NOT already contain # this file. Windows assigns a UUID to the installer at build time, it's assumed