Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 4, 2023
1 parent 1990b0f commit 97e7d54
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/build.yaml'' && ''.github/workflows/build.main.kts'''
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- id: 'step-0'
name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
run: 'echo "compat=$(jq -c . < .github/compatibility-test-matrix.json)" >> $GITHUB_OUTPUT'
compatibility-test:
Expand All @@ -57,7 +57,7 @@ jobs:
steps:
- id: 'step-0'
name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Set up JDK'
uses: 'actions/setup-java@v3'
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
steps:
- id: 'step-0'
name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Set up JDK'
uses: 'actions/setup-java@v3'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-wrapper-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/gradle-wrapper-validation.yaml'' && ''.github/workflows/gradle-wrapper-validation.main.kts'''
Expand All @@ -32,7 +32,7 @@ jobs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Validate wrapper'
uses: 'gradle/wrapper-validation-action@v1'

0 comments on commit 97e7d54

Please sign in to comment.