From 00a4229a05199434753906e363a6a6cf72f475d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 10:05:21 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [docker/login-action](https://github.com/docker/login-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish-latest-mock-server.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 675dfed..fd19022 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v6 - uses: ./.github/actions/pnpm-install - name: Login to GitHub Packages Docker Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -23,7 +23,7 @@ jobs: # upload changes.patch on failure - name: Upload uncomitted changes if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: changes.patch path: changes.patch diff --git a/.github/workflows/publish-latest-mock-server.yml b/.github/workflows/publish-latest-mock-server.yml index 424e859..4020894 100644 --- a/.github/workflows/publish-latest-mock-server.yml +++ b/.github/workflows/publish-latest-mock-server.yml @@ -46,7 +46,7 @@ jobs: run: echo "commit_sha=${{ github.sha }}" >> $GITHUB_OUTPUT - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -76,7 +76,7 @@ jobs: - uses: ./.github/actions/pnpm-install - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }}