Skip to content

Commit e2768da

Browse files
Update all dependencies
1 parent 8f259b6 commit e2768da

10 files changed

Lines changed: 27 additions & 27 deletions

.github/workflows/doctoc.yml

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

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v7
2020

2121
- name: Run doctoc on README
2222
run: npx doctoc README.md

.github/workflows/shared-build-and-publish-docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ jobs:
8989
9090
- name: Set up QEMU
9191
if: ${{ inputs.build_arm64_image }}
92-
uses: docker/setup-qemu-action@v3
92+
uses: docker/setup-qemu-action@v4
9393
with:
9494
platforms: 'arm64'
9595

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

9999
- name: Azure login
100-
uses: azure/login@v2
100+
uses: azure/login@v3
101101
with:
102102
client-id: ${{ secrets.azure_client_id }}
103103
tenant-id: ${{ secrets.azure_tenant_id }}
@@ -110,17 +110,17 @@ jobs:
110110
# Checkout is needed when context is local "."
111111
# Otherwise the repository code will not be fetched for the build
112112
if: ${{ inputs.context == '.' }}
113-
uses: actions/checkout@v6
113+
uses: actions/checkout@v7
114114

115115
- name: Download artifacts
116116
if: ${{ inputs.artifact-id }}
117-
uses: actions/download-artifact@v7
117+
uses: actions/download-artifact@v8
118118
with:
119119
artifact-ids: ${{ inputs.artifact-id }}
120120
path: ${{ inputs.artifact-path }}
121121

122122
- name: Build and push
123-
uses: docker/build-push-action@v6
123+
uses: docker/build-push-action@v7
124124
with:
125125
tags: |
126126
${{ steps.variables.outputs.docker_image }}

.github/workflows/shared-check-renovatebot-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@v7
2626
with:
2727
submodules: ${{ inputs.checkout_submodules }}
2828

2929
- name: Validate config
30-
uses: suzuki-shunsuke/github-action-renovate-config-validator@c22827f47f4f4a5364bdba19e1fe36907ef1318e # v1.1.1
30+
uses: suzuki-shunsuke/github-action-renovate-config-validator@ee9f69e1f683ed0d08225086482b34fc9abe9300 # v2.1.0
3131
with:
3232
config_file_path: ${{ inputs.config_file_path }}

.github/workflows/shared-codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
language: ${{ fromJSON(inputs.languages) }}
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v6
43+
uses: actions/checkout@v7
4444

4545
- name: Set up Java
4646
if: matrix.language == 'java-kotlin' && inputs.java_version != ''

.github/workflows/shared-dependency-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616

1717
- name: Dependency Review
18-
uses: actions/dependency-review-action@v4
18+
uses: actions/dependency-review-action@v5.0.0
1919
with:
2020
config-file: HSLdevcom/jore4-tools/.github/dependency-scan-config.yaml@main

.github/workflows/shared-run-e2e.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
containers: [1, 2, 3, 4, 5, 6, 7, 8]
157157
steps:
158158
- name: Checkout
159-
uses: actions/checkout@v6
159+
uses: actions/checkout@v7
160160
- name: Start e2e env
161161
id: start-e2e-env
162162
uses: HSLdevcom/jore4-tools/github-actions/setup-e2e-environment@setup-e2e-environment-v11
@@ -234,7 +234,7 @@ jobs:
234234
cat ${{ github.workspace }}/durations.out.json
235235
236236
- name: Upload test durations
237-
uses: actions/upload-artifact@v6
237+
uses: actions/upload-artifact@v7
238238
with:
239239
name: "e2e-test-durations-${{ strategy.job-index }}"
240240
path: ${{ github.workspace }}/durations.out.json
@@ -250,7 +250,7 @@ jobs:
250250
- name: Upload test reports as an artifact
251251
# Should be run especially when tests fail
252252
if: always()
253-
uses: actions/upload-artifact@v6
253+
uses: actions/upload-artifact@v7
254254
with:
255255
name: cypress-test-results-${{ strategy.job-index }}
256256
path: ${{ github.workspace }}/ctrf-report.json
@@ -276,7 +276,7 @@ jobs:
276276
277277
- name: Upload test reports as an artifact
278278
if: always() && steps.copy_test_reports.outputs.test_reports_exist == 'true'
279-
uses: actions/upload-artifact@v6
279+
uses: actions/upload-artifact@v7
280280
with:
281281
name: cypress-docker-reports-${{ strategy.job-index }}
282282
path: ${{ github.workspace }}/test-reports
@@ -316,7 +316,7 @@ jobs:
316316
317317
- name: Upload Docker server logs as an artifact
318318
if: always() && steps.collect_docker_logs.outputs.test_server_logs_exist == 'true'
319-
uses: actions/upload-artifact@v6
319+
uses: actions/upload-artifact@v7
320320
with:
321321
name: cypress-server-logs-${{ strategy.job-index }}
322322
path: ${{ github.workspace }}/docker-logs
@@ -328,14 +328,14 @@ jobs:
328328
- run_e2e_tests
329329
steps:
330330
- name: Download E2E Test Results
331-
uses: actions/download-artifact@v7
331+
uses: actions/download-artifact@v8
332332
continue-on-error: true
333333
with:
334334
pattern: cypress-test-results-*
335335
path: ${{ github.workspace }}/ctrf
336336

337337
- name: Publish Test Report
338-
uses: ctrf-io/github-test-reporter@024bc4b64d997ca9da86833c6b9548c55c620e40 # v1.0.26
338+
uses: ctrf-io/github-test-reporter@e500b992f936420eb633c91644cf10d4d71df700 # v1.1.0
339339
with:
340340
report-path: "ctrf/*/*.json"
341341
summary-report: true
@@ -352,15 +352,15 @@ jobs:
352352
- run_e2e_tests
353353
steps:
354354
- name: Checkout
355-
uses: actions/checkout@v6
355+
uses: actions/checkout@v7
356356
with:
357357
fetch-depth: 0
358358
repository: "HSLdevcom/jore4-ci-data"
359359
ref: e2e-test-durations
360360
ssh-key: ${{ secrets.jore4_ci_data_repo_ssh_key }}
361361

362362
- name: Download E2E Test Durations
363-
uses: actions/download-artifact@v7
363+
uses: actions/download-artifact@v8
364364
with:
365365
pattern: e2e-test-durations-*
366366
path: ${{ github.workspace }}/split-durations

.github/workflows/shared-secret-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
runs-on: ubuntu-24.04
3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v6
41+
uses: actions/checkout@v7
4242
with:
4343
fetch-depth: 0
4444

4545
- name: Secret Scanning
46-
uses: trufflesecurity/trufflehog@ef6e76c3c4023279497fab4721ffa071a722fd05 # v3.92.4
46+
uses: trufflesecurity/trufflehog@30d5bb91af1a771378349dbbb0c82129392acf70 # v3.95.6
4747
with:
4848
extra_args: --results=verified,unverified,unknown --exclude-detectors=AWS
4949

@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- name: Send ${{ matrix.alert_type }} alert
6464
if: matrix.enabled
65-
uses: dawidd6/action-send-mail@6e71c855c9a091d80a519621b9fd3e8d252ca40c # v7
65+
uses: dawidd6/action-send-mail@42942bc2f8fba4e611b459a018967a6a7c78c68c # v17
6666
with:
6767
server_address: smtp.gmail.com
6868
server_port: 465

.github/workflows/test-healthcheck-action.yml

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

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v7
2020

2121
- name: Startup sample HTTP server
2222
run: docker run -d -p 8080:80 nginxdemos/hello

.github/workflows/test-setup-e2e-environment-action.yml

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

5959
steps:
6060
- name: Checkout code
61-
uses: actions/checkout@v6
61+
uses: actions/checkout@v7
6262

6363
- name: Create a temporary custom docker compose file for testing
6464
run: |

github-actions/setup-e2e-environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ runs:
114114
115115
- name: Download docker-compose bundle from GHA artifact
116116
if: ${{ inputs.docker_compose_bundle_gha_artifact }}
117-
uses: actions/download-artifact@v7
117+
uses: actions/download-artifact@v8
118118
with:
119119
name: jore4-docker-compose-bundle
120120
path: ${{ github.workspace }}/docker

0 commit comments

Comments
 (0)