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
2 changes: 1 addition & 1 deletion .github/workflows/api-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-sonarqube-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
label: "ZUGFeRD"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand All @@ -40,7 +40,7 @@ jobs:
run: mvn -B verify --file backend/${{ matrix.sonar.folder }}/pom.xml

- name: Cache SonarQube packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }} # tags from the docker/metadata-action

- name: Trigger deploy workflow
uses: actions/github-script@v8
uses: actions/github-script@v9
# only trigger deployment on main
if: ${{ github.ref == 'refs/heads/main' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-track-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
# Checkout the code
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand All @@ -41,7 +41,7 @@ jobs:

# Upload the SBOM to Dependency-Track
- name: Upload BOM to Dependency-Track
uses: DependencyTrack/gh-upload-sbom@v3.1.0
uses: DependencyTrack/gh-upload-sbom@v4.0.0
with:
apiKey: ${{ secrets.DEPENDENCYTRACK_APIKEY }}
serverHostname: "dtrack.hopps.cloud"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-dependency-track.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

# Upload the SBOM to Dependency-Track
- name: Upload BOM to Dependency-Track
uses: DependencyTrack/gh-upload-sbom@v3.1.0
uses: DependencyTrack/gh-upload-sbom@v4.0.0
with:
apiKey: ${{ secrets.DEPENDENCYTRACK_APIKEY }}
serverHostname: "dtrack.hopps.cloud"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
tags: ghcr.io/${{ github.repository }}/frontend:${{ env.VERSION }}

- name: Trigger deploy workflow
uses: actions/github-script@v8
uses: actions/github-script@v9
# only trigger deployment on main
if: ${{ github.ref == 'refs/heads/main' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
tags: ghcr.io/${{ github.repository }}/hopps-keycloak:${{ env.VERSION }}

- name: Trigger deploy workflow
uses: actions/github-script@v8
uses: actions/github-script@v9
# only trigger deployment on main
if: ${{ github.ref == 'refs/heads/main' }}
with:
Expand Down
Loading