From 39e1ade9cf45ba3c2902d11108b65c3f09b01760 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 02:18:23 +0000 Subject: [PATCH] [skip-ci] Update actions/checkout action to v6 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/opendownstream-pr.yml | 4 ++-- .github/workflows/validate.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/opendownstream-pr.yml b/.github/workflows/opendownstream-pr.yml index d2b62e603b..a8ab3f6f22 100644 --- a/.github/workflows/opendownstream-pr.yml +++ b/.github/workflows/opendownstream-pr.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Self' - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Because we use pull_request_target, this checks out the code from the default branch, NOT the PR branch - name: 'Setup Go' @@ -23,7 +23,7 @@ jobs: go-version: 'stable' - name: 'Checkout forked buildah' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'podmanbot/buildah' # The target repository path: 'buildah' # Checkout into a sub-directory diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 09dccc1b61..25555c4363 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -17,7 +17,7 @@ jobs: codespell: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: install deps # Version of codespell bundled with Ubuntu is way old, so use pip. run: pip install --break-system-packages codespell==v2.4.1 @@ -30,7 +30,7 @@ jobs: run: working-directory: ./common steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 2 - uses: actions/setup-go@v6 @@ -73,7 +73,7 @@ jobs: env: GIT_CHECK_EXCLUDE: "./vendor" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: # By default github actions creates a merge commit which fails the validation, # we only must validate the actual commits of the author. @@ -93,7 +93,7 @@ jobs: go-vendor: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version: 1.25.x