From f2a46b8a218461dfa04cd140e693b4a2069b6a50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 04:39:58 +0000 Subject: [PATCH] Bump the dependency-updates group across 1 directory with 2 updates Bumps the dependency-updates group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependency-updates - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependency-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/build-image-on-push.yml | 2 +- .github/workflows/update-image-on-push.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-image-on-push.yml b/.github/workflows/build-image-on-push.yml index d2e5e6f..b8f6c6c 100644 --- a/.github/workflows/build-image-on-push.yml +++ b/.github/workflows/build-image-on-push.yml @@ -40,7 +40,7 @@ jobs: uses: docker/setup-buildx-action@v3.11.1 - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test build of image id: build diff --git a/.github/workflows/update-image-on-push.yml b/.github/workflows/update-image-on-push.yml index 4be1393..47d9ea8 100644 --- a/.github/workflows/update-image-on-push.yml +++ b/.github/workflows/update-image-on-push.yml @@ -50,7 +50,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build and and push by digest uses: docker/build-push-action@v6.18.0 @@ -81,7 +81,7 @@ jobs: - build steps: - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: ${{ runner.temp }}/digests pattern: digests-* @@ -98,7 +98,7 @@ jobs: uses: docker/setup-buildx-action@v3.11.1 - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get p2pool release tag run: echo P2POOL_TAG="$(awk -F '=' '/P2POOL_BRANCH=/ {print $2}' Dockerfile)" >> $GITHUB_ENV