Skip to content

Commit 750dce2

Browse files
Bump actions/checkout from 2 to 3 (#1074)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8151473 commit 750dce2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/check-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
# brew install sbt; cd graphql-java-codegen-sbt-plugin; sbt fmt or sbt check
2121
- name: Check Scala Code Style

.github/workflows/github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
jdk-version: [ 8, 11, 17 ]
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222

2323
- name: Setup Java ${{ matrix.jdk-version }}
2424
uses: actions/setup-java@v1
@@ -85,7 +85,7 @@ jobs:
8585
needs: build
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v3
8989
with:
9090
fetch-depth: 0
9191
- name: Setup Java

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
release:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
with:
3737
ref: ${{ github.event.inputs.release_branch }}
3838

.github/workflows/update-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update-version:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Update version of Maven plugin sub-project
1717
working-directory: plugins/maven/graphql-java-codegen-maven-plugin

0 commit comments

Comments
 (0)