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 and leonard84 committed Sep 18, 2023
1 parent aa45b9d commit ace897a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branches-and-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
variant: '4.0'
java: '8'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Codecov needs fetch-depth > 1
fetch-depth: 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
variant: [ '2.5', '3.0', '4.0' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Manually added: Install and setup JDK
- name: 'Set up JDKs'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
variant: '4.0'
java: '8'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Codecov needs fetch-depth > 1
fetch-depth: 2
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
variant: [ '2.5', '3.0', '4.0' ] # publish needs to be done for all versions
java: [ '8' ] # publish needs the min supported java version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 'Set up JDKs'
uses: ./.github/actions/setup-build-env
with:
Expand All @@ -99,7 +99,7 @@ jobs:
variant: ['4.0'] # docs need the highest variant
java: ['17'] # docs need the highest java version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 'Set up JDKs'
uses: ./.github/actions/setup-build-env
with:
Expand Down

0 comments on commit ace897a

Please sign in to comment.