From 2337a4016eb7c31e421b042a72dda58137879542 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 00:18:09 +0000 Subject: [PATCH] build(deps): Bump the all group across 1 directory with 6 updates Bumps the all group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) 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) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5...v6) 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/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v5...v6) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/audit.yml | 10 +++++----- .github/workflows/release.yml | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 65b4f9a..3e8745a 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -33,14 +33,14 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v7 with: context: ./api tags: ${{ github.repository }}-api:ci - run: docker save ${{ github.repository }}:ci | gzip > api_image.tar.gz - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: api-image path: api_image.tar.gz @@ -51,14 +51,14 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v7 with: context: ./app tags: ${{ github.repository }}-app:ci - run: docker save ${{ github.repository }}:ci | gzip > app_image.tar.gz - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: app-image path: app_image.tar.gz @@ -82,7 +82,7 @@ jobs: - run: npm audit --audit-level=moderate --json > audit_report.json working-directory: ./app - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: app-audit-report path: ./app/audit_report.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c221847..7d17444 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: docker/metadata-action@v5 + - uses: docker/metadata-action@v6 id: meta with: images: | @@ -26,19 +26,19 @@ jobs: ${{ github.ref_name }} - name: "Login to Docker Hub" - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: "Login to GitHub Container Registry" - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v7 with: context: ./api push: true @@ -50,7 +50,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: docker/metadata-action@v5 + - uses: docker/metadata-action@v6 id: meta with: images: | @@ -61,19 +61,19 @@ jobs: ${{ github.ref_name }} - name: "Login to Docker Hub" - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: "Login to GitHub Container Registry" - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - - uses: docker/build-push-action@v6 + - uses: docker/build-push-action@v7 with: context: ./app push: true @@ -104,7 +104,7 @@ jobs: working-directory: ./app - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - uses: actions/upload-pages-artifact@v4 with: @@ -112,4 +112,4 @@ jobs: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5