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
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
task: start-measurement
label: 'Build, unit tests and packaging'
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # SonarCloud: Shallow clones should be disabled for a better relevancy of analysis
- name: Ensure required packages
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
with:
task: start-measurement
label: 'Central Server system tests'
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
with:
task: start-measurement
label: 'Security Server system tests'
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
task: start-measurement
label: 'E2E tests'
# Setup
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_develop_to_8x.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Auto-merge to develop-8.x
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Try to merge develop into develop-8.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Initialize docker setup
working-directory: ${{ github.workspace }}/Docker/centralserver
run: ./init_context.sh
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Initialize docker setup
working-directory: ${{ github.workspace }}/Docker/securityserver
run: ./init_context.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_testca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Initialize docker setup
working-directory: ./Docker/testca
run: ./init_context.sh
Expand Down
Loading