Skip to content

Commit 3930c08

Browse files
dependabot[bot]manuelhummler
authored andcommitted
build(deps): bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: '7' 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] <support@github.com>
1 parent fd52d82 commit 3930c08

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/backend.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Extract metadata (tags, labels) for Docker
5353
id: meta
54-
uses: docker/metadata-action@v5
54+
uses: docker/metadata-action@v6
5555
with:
5656
images: ${{ format('{0}/{1}', env.BASE_IMAGE_NAME, matrix.service.label) }}
5757
tags: |
@@ -63,17 +63,17 @@ jobs:
6363
type=ref,event=branch,enable=${{ github.ref_name != github.event.repository.default_branch }}
6464
6565
- name: Set up Docker Buildx
66-
uses: docker/setup-buildx-action@v3
66+
uses: docker/setup-buildx-action@v4
6767

6868
- name: Login to DockerHub
69-
uses: docker/login-action@v3
69+
uses: docker/login-action@v4
7070
with:
7171
registry: ghcr.io
7272
username: ${{ github.actor }}
7373
password: ${{ secrets.GITHUB_TOKEN }}
7474

7575
- name: Build and push
76-
uses: docker/build-push-action@v6
76+
uses: docker/build-push-action@v7
7777
with:
7878
context: backend/${{ matrix.service.directory }}
7979
file: backend/${{ matrix.service.directory }}/src/main/docker/Dockerfile.jvm

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 1
2121

.github/workflows/frontend.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,16 @@ jobs:
5959
VITE_API_FIN_URL: "VITE_API_FIN_URL_VALUE"
6060

6161
- name: Upload build artifacts
62-
uses: actions/upload-artifact@v6
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: build
6565
path: frontend/spa/dist/
6666

6767
- name: Set up Docker Buildx
68-
uses: docker/setup-buildx-action@v3
68+
uses: docker/setup-buildx-action@v4
6969

7070
- name: Login to GitHub Container Registry
71-
uses: docker/login-action@v3
71+
uses: docker/login-action@v4
7272
with:
7373
registry: ghcr.io
7474
username: ${{ github.actor }}
@@ -85,7 +85,7 @@ jobs:
8585
fi
8686
8787
- name: Build and push Docker image
88-
uses: docker/build-push-action@v6
88+
uses: docker/build-push-action@v7
8989
with:
9090
context: frontend/spa
9191
file: frontend/spa/docker/Dockerfile

.github/workflows/keycloak.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
uses: actions/checkout@v6
3333

3434
- name: Set up Docker Buildx
35-
uses: docker/setup-buildx-action@v3
35+
uses: docker/setup-buildx-action@v4
3636

3737
- name: Login to GitHub Container Registry
38-
uses: docker/login-action@v3
38+
uses: docker/login-action@v4
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
@@ -52,7 +52,7 @@ jobs:
5252
fi
5353
5454
- name: Build and push Docker image
55-
uses: docker/build-push-action@v6
55+
uses: docker/build-push-action@v7
5656
with:
5757
context: ${{ matrix.baseDirectory }}
5858
file: ${{ matrix.baseDirectory }}/Dockerfile

0 commit comments

Comments
 (0)