Skip to content

Commit d054e57

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5a6825e commit d054e57

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
sudo rm -rf /usr/local/lib/android
3838
sudo rm -rf /opt/ghc
3939
- name: checkout code
40-
uses: actions/checkout@v5.0.0
40+
uses: actions/checkout@v6
4141
- name: setup java
4242
uses: actions/setup-java@v5.2.0
4343
with:
@@ -71,7 +71,7 @@ jobs:
7171
OPEN_API_TEST: "true"
7272
steps:
7373
- name: checkout code
74-
uses: actions/checkout@v5.0.0
74+
uses: actions/checkout@v6
7575
- name: setup java
7676
uses: actions/setup-java@v5.2.0
7777
with:
@@ -93,14 +93,14 @@ jobs:
9393
runs-on: ubuntu-latest
9494
steps:
9595
- name: checkout code
96-
uses: actions/checkout@v5.0.0
96+
uses: actions/checkout@v6
9797
- name: Build docker image
9898
run: docker build -t cda:build-latest .
9999
build-schema-migration-image:
100100
runs-on: ubuntu-latest
101101
steps:
102102
- name: checkout code
103-
uses: actions/checkout@v5.0.0
103+
uses: actions/checkout@v6
104104
# No uploads, we're just verifying that nothing broke the docker image.
105105
- name: Build Migration image
106106
uses: ./.github/actions/database-migration-image
@@ -118,7 +118,7 @@ jobs:
118118
if: always() && (github.ref_name == 'develop')
119119
steps:
120120
- name: Badge Branch
121-
uses: actions/checkout@v5.0.0
121+
uses: actions/checkout@v6
122122
with:
123123
ref: badges
124124
fetch-depth: 1

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v5.0.0
17+
uses: actions/checkout@v6
1818

1919
- name: Initialize CodeQL
2020
uses: github/codeql-action/init@v3.29.11

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
sudo rm -rf /usr/local/lib/android
5858
sudo rm -rf /opt/ghc
5959
- name: checkout code
60-
uses: actions/checkout@v5.0.0
60+
uses: actions/checkout@v6
6161
with:
6262
ref: ${{inputs.branch}}
6363
- name: setup java

.github/workflows/web-gui-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: install node for cda-gui audit
2626
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)