Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit c94d00a

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 12e1574 commit c94d00a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Lint Solidity
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- uses: actions/setup-node@v1
1111
with:
1212
node-version: '14.x'
@@ -20,7 +20,7 @@ jobs:
2020
name: Lint JS
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- uses: actions/setup-node@v1
2525
with:
2626
node-version: '14.x'

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
1212
steps:
1313

14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: google-github-actions/release-please-action@v3
1616
id: release
1717
with:

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
node-version: [14.x]
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v2.4.0
16+
uses: actions/checkout@v3
1717
- uses: actions/[email protected]
1818
with:
1919
path: ~/.npm
@@ -47,7 +47,7 @@ jobs:
4747
node-version: [14.x]
4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v2.4.0
50+
uses: actions/checkout@v3
5151
- name: Install Node.js ${{ matrix.node-version }}
5252
uses: actions/[email protected]
5353
with:

0 commit comments

Comments
 (0)