Skip to content

Commit 97e7d54

Browse files
Update actions/checkout action to v4
1 parent 1990b0f commit 97e7d54

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- id: 'step-0'
2323
name: 'Check out'
24-
uses: 'actions/checkout@v3'
24+
uses: 'actions/checkout@v4'
2525
- id: 'step-1'
2626
name: 'Execute script'
2727
run: 'rm ''.github/workflows/build.yaml'' && ''.github/workflows/build.main.kts'''
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
- id: 'step-0'
4040
name: 'Checkout'
41-
uses: 'actions/checkout@v3'
41+
uses: 'actions/checkout@v4'
4242
- id: 'step-1'
4343
run: 'echo "compat=$(jq -c . < .github/compatibility-test-matrix.json)" >> $GITHUB_OUTPUT'
4444
compatibility-test:
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- id: 'step-0'
5959
name: 'Checkout'
60-
uses: 'actions/checkout@v3'
60+
uses: 'actions/checkout@v4'
6161
- id: 'step-1'
6262
name: 'Set up JDK'
6363
uses: 'actions/setup-java@v3'
@@ -85,7 +85,7 @@ jobs:
8585
steps:
8686
- id: 'step-0'
8787
name: 'Checkout'
88-
uses: 'actions/checkout@v3'
88+
uses: 'actions/checkout@v4'
8989
- id: 'step-1'
9090
name: 'Set up JDK'
9191
uses: 'actions/setup-java@v3'

.github/workflows/codeql.yml

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

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/gradle-wrapper-validation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- id: 'step-0'
2121
name: 'Check out'
22-
uses: 'actions/checkout@v3'
22+
uses: 'actions/checkout@v4'
2323
- id: 'step-1'
2424
name: 'Execute script'
2525
run: 'rm ''.github/workflows/gradle-wrapper-validation.yaml'' && ''.github/workflows/gradle-wrapper-validation.main.kts'''
@@ -32,7 +32,7 @@ jobs:
3232
- 'check_yaml_consistency'
3333
steps:
3434
- id: 'step-0'
35-
uses: 'actions/checkout@v3'
35+
uses: 'actions/checkout@v4'
3636
- id: 'step-1'
3737
name: 'Validate wrapper'
3838
uses: 'gradle/wrapper-validation-action@v1'

0 commit comments

Comments
 (0)