Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up JDK 21
uses: actions/setup-java@v5
Expand All @@ -26,7 +26,7 @@ jobs:
server-password: MAVEN_PASSWORD

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

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

- 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 }}

- name: Extract metadata (tags, labels) for GUI Docker
id: meta_gui
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/openconext/openconext-oidc-playground/oidc-playground-gui
flavor: |
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Extract metadata (tags, labels) for Server Docker
id: meta_server
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/openconext/openconext-oidc-playground/oidc-playground-server
flavor: |
Expand All @@ -116,7 +116,7 @@ jobs:
type=sha

- name: Build and push the oidc playground gui image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: oidc-playground-client
file: oidc-playground-client/docker/Dockerfile
Expand All @@ -126,7 +126,7 @@ jobs:
labels: ${{ steps.meta_gui.outputs.labels }}

- name: Build and push the oidc playground server image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: oidc-playground-server
file: oidc-playground-server/docker/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: '17'
- run: export NODE_OPTIONS=--openssl-legacy-provider
Expand All @@ -27,7 +27,7 @@ jobs:
distribution: 'temurin'
cache: 'maven'

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

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