Skip to content

Commit 0d5d11f

Browse files
dependabot[bot]tschuchortdev
authored andcommitted
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a16b62c commit 0d5d11f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java: [ '8', '11', '16' ]
2727
platform: ['windows-latest', 'ubuntu-latest']
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
- name: Set up JDK ${{ matrix.java }}
3131
uses: actions/setup-java@v2
3232
with:
@@ -57,7 +57,7 @@ jobs:
5757
java: [ '8', '11', '16' ]
5858
platform: ['windows-latest', 'ubuntu-latest']
5959
steps:
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v3
6161
- name: Gradle wrapper validation
6262
uses: gradle/wrapper-validation-action@v1
6363
- name: Set up JDK
@@ -96,7 +96,7 @@ jobs:
9696
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SONATYPE_SIGNING_PRIVATE_KEY }}
9797
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
9898
steps:
99-
- uses: actions/checkout@v2
99+
- uses: actions/checkout@v3
100100
with:
101101
persist-credentials: false # without this, all access tokens set later on will be ignored
102102
- name: Set up JDK

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
needs: [check_duplicate_workflows]
2424
if: ${{ needs.check_duplicate_workflows.outputs.should_skip != 'true' }}
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: gradle/wrapper-validation-action@v1

0 commit comments

Comments
 (0)