diff options
author | 2025-08-11 13:37:31 +0000 | |
---|---|---|
committer | 2025-08-11 13:37:31 +0000 | |
commit | 4b39a3e7aa6a4b7b253af0547dc23dc65775ed6d (patch) | |
tree | a56b1f0503699c56bb84003be2f68bf4f18b6d0f | |
parent | 844ef1e30310bd2fd479882ae38d19b42dd8e9a5 (diff) | |
download | containers-renovate/actions-checkout-5.x.tar.gz containers-renovate/actions-checkout-5.x.tar.zst containers-renovate/actions-checkout-5.x.zip |
Update actions/checkout action to v5renovate/actions-checkout-5.x
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 217816a..9c9f15f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: changed-containers: runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: '0' - name: Get changed files @@ -69,7 +69,7 @@ jobs: matrix: container: ${{ fromJson(needs.changed-containers.outputs.changed_dirs) }} steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 # Login to the registry except for pull requests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e5fd46..7ae2518 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: changed-containers: runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Extract container name from tag id: extract_container_name # The tag is in the format container_name-v1.2.3 @@ -49,7 +49,7 @@ jobs: - platform: linux/amd64 runner: ubuntu-latest-arm-m steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Prepare run: | platform=${{ matrix.platform }} |