From 74cff1246550eef6337fe7d8e00cb3a8eb06d858 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 23:07:55 +0000 Subject: [PATCH] chore(deps): bump the github-actions-updates group across 1 directory with 3 updates Bumps the github-actions-updates group with 3 updates in the / directory: [docker/login-action](https://github.com/docker/login-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [actions/setup-python](https://github.com/actions/setup-python). Updates `docker/login-action` from 4.2.0 to 4.5.1 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.2.0...v4.5.1) Updates `docker/build-push-action` from 7.2.0 to 7.3.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.2.0...v7.3.0) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: docker/build-push-action dependency-version: 7.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates - dependency-name: docker/login-action dependency-version: 4.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-docker.yml | 8 ++++---- .github/workflows/release-version.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index a4b25eb2..c7eca3f1 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -24,14 +24,14 @@ jobs: uses: actions/checkout@v7 - name: Log in to the Container registry - uses: docker/login-action@v4.2.0 + uses: docker/login-action@v4.5.1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: devops build-args: PYTHON_VERSION=${{ matrix.python_version }} @@ -54,14 +54,14 @@ jobs: uses: actions/checkout@v7 - name: Log in to the Container registry - uses: docker/login-action@v4.2.0 + uses: docker/login-action@v4.5.1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v7.2.0 + uses: docker/build-push-action@v7.3.0 with: context: devops build-args: MSSQL_VERSION=${{ matrix.mssql_version }} diff --git a/.github/workflows/release-version.yml b/.github/workflows/release-version.yml index a52b806f..b4c122fd 100644 --- a/.github/workflows/release-version.yml +++ b/.github/workflows/release-version.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v7 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: '3.11'