From 4f2177f4d1331e05d3055cac4839ab5e38341c41 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 00:46:22 +0000 Subject: [PATCH] Update actions/checkout action to v7 --- .github/workflows/pr.yml | 2 +- .github/workflows/push.yml | 4 ++-- .github/workflows/tag.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8a3eb21..98fda89 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -13,6 +13,6 @@ jobs: container: image: docker:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - run: docker pull $IMAGE_NAME:latest || true - run: docker build --cache-from $IMAGE_NAME:latest . diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1c693d3..3cc3185 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,7 +15,7 @@ jobs: container: image: docker:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - run: docker pull $IMAGE_NAME:latest || true - run: docker build --cache-from $IMAGE_NAME:latest . @@ -30,7 +30,7 @@ jobs: GHCR_BOT_USERNAME: ${{ secrets.GHCR_BOT_USERNAME }} GHCR_BOT_TOKEN: ${{ secrets.GHCR_BOT_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - run: echo "${GHCR_BOT_TOKEN}" | docker login ghcr.io -u ${GHCR_BOT_USERNAME} --password-stdin - run: docker pull $IMAGE_NAME:latest || true - run: docker build --cache-from ${IMAGE_NAME}:latest --tag ${IMAGE_NAME}:${{ github.sha }} --tag ${IMAGE_NAME}:latest . diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 4d2a3e4..74724ab 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -15,7 +15,7 @@ jobs: container: image: docker:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - run: docker pull $IMAGE_NAME:latest || true - run: docker build --cache-from $IMAGE_NAME:latest . @@ -30,7 +30,7 @@ jobs: container: image: docker:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - run: echo "${GHCR_BOT_TOKEN}" | docker login ghcr.io -u ${GHCR_BOT_USERNAME} --password-stdin - run: docker pull $IMAGE_NAME:latest || true - run: docker build --cache-from ${IMAGE_NAME}:latest --tag ${IMAGE_NAME}:${COMMIT_TAG} .