Skip to content

Commit c6c50ba

Browse files
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] <[email protected]>
1 parent 9c6aea2 commit c6c50ba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
os: [ubuntu-latest, windows-latest, macos-latest]
3030
java: [15]
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
- name: Set up JDK ${{ matrix.java }}
3434
uses: actions/setup-java@v2
3535
with:

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the latest code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
environment:
1111
name: release
1212
steps:
13-
- uses: actions/checkout@v2.3.4
13+
- uses: actions/checkout@v3
1414

1515
- name: "Get tag name"
1616
id: tag
@@ -109,7 +109,7 @@ jobs:
109109
environment:
110110
name: release
111111
steps:
112-
- uses: actions/checkout@v2.3.4
112+
- uses: actions/checkout@v3
113113
with:
114114
ref: develop
115115
token: ${{ secrets.WEBGOAT_DEPLOYER_TOKEN }}

0 commit comments

Comments
 (0)