Skip to content

Commit 1fd7cbb

Browse files
Bump the gha group across 1 directory with 8 updates
Bumps the gha group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [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/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.1` | `5.5.2` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) 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/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) 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/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v5...v6) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.5.1...v5.5.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a6401b5 commit 1fd7cbb

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: Set up JDK 21
2020
uses: actions/setup-java@v5
@@ -26,7 +26,7 @@ jobs:
2626
server-password: MAVEN_PASSWORD
2727

2828
- name: Set up cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.m2/repository
3232
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -78,18 +78,18 @@ jobs:
7878
MAVEN_PASSWORD: ${{ secrets.BUILD_PASSWORD }}
7979

8080
- name: Set up Docker Buildx
81-
uses: docker/setup-buildx-action@v3
81+
uses: docker/setup-buildx-action@v4
8282

8383
- name: Login to GitHub Container Registry
84-
uses: docker/login-action@v3
84+
uses: docker/login-action@v4
8585
with:
8686
registry: ghcr.io
8787
username: ${{ github.repository_owner }}
8888
password: ${{ secrets.GITHUB_TOKEN }}
8989

9090
- name: Extract metadata (tags, labels) for GUI Docker
9191
id: meta_gui
92-
uses: docker/metadata-action@v5
92+
uses: docker/metadata-action@v6
9393
with:
9494
images: ghcr.io/openconext/openconext-oidc-playground/oidc-playground-gui
9595
flavor: |
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Extract metadata (tags, labels) for Server Docker
105105
id: meta_server
106-
uses: docker/metadata-action@v5
106+
uses: docker/metadata-action@v6
107107
with:
108108
images: ghcr.io/openconext/openconext-oidc-playground/oidc-playground-server
109109
flavor: |
@@ -116,7 +116,7 @@ jobs:
116116
type=sha
117117
118118
- name: Build and push the oidc playground gui image
119-
uses: docker/build-push-action@v6
119+
uses: docker/build-push-action@v7
120120
with:
121121
context: oidc-playground-client
122122
file: oidc-playground-client/docker/Dockerfile
@@ -126,7 +126,7 @@ jobs:
126126
labels: ${{ steps.meta_gui.outputs.labels }}
127127

128128
- name: Build and push the oidc playground server image
129-
uses: docker/build-push-action@v6
129+
uses: docker/build-push-action@v7
130130
with:
131131
context: oidc-playground-server
132132
file: oidc-playground-server/docker/Dockerfile

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414

1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

19-
- uses: actions/setup-node@v5
19+
- uses: actions/setup-node@v6
2020
with:
2121
node-version: '17'
2222
- run: export NODE_OPTIONS=--openssl-legacy-provider
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'temurin'
2828
cache: 'maven'
2929

30-
- uses: actions/cache@v4
30+
- uses: actions/cache@v5
3131
with:
3232
path: ~/.m2/repository
3333
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -38,6 +38,6 @@ jobs:
3838
run: export NODE_OPTIONS=--openssl-legacy-provider && mvn -B clean install
3939

4040
- name: Codecov
41-
uses: codecov/codecov-action@v5.5.1
41+
uses: codecov/codecov-action@v5.5.2
4242
with:
4343
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)