Skip to content

Commit 3052449

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 401c3ce commit 3052449

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/deploy-ci-json.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
# Checkout the repository.
1212
- name: Checkout the repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
token: ${{ secrets.GH_TOKEN }}
1616
id: checkout

.github/workflows/deploy-fe.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
#
2828
# Checkout the repository.
2929
#
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
id: checkout
3232

3333
#
@@ -95,7 +95,7 @@ jobs:
9595
#
9696
# Checkout the repository.
9797
#
98-
- uses: actions/checkout@v2
98+
- uses: actions/checkout@v3
9999
id: checkout
100100

101101
#

.github/workflows/deploy-storybook-on-demand.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
# Checkout the repository.
7070
#
7171
- name: Checkout project
72-
uses: actions/checkout@v2
72+
uses: actions/checkout@v3
7373
with:
7474
ref: ${{ env.GITHUB_PR_HEAD_SHA }}
7575

.github/workflows/deploy-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
#
2424
# Checkout the repository.
2525
#
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
id: checkout
2828

2929
#

.github/workflows/deploy-test-crawler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checkout the repository.
1414
- name: Checkout the repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
# Create date variable
1818
- name: Create Date Variable
@@ -55,7 +55,7 @@ jobs:
5555
steps:
5656
# Checkout the repository.
5757
- name: Checkout the repository
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959
with:
6060
token: ${{ secrets.GH_TOKEN }}
6161
id: checkout
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Clone lotus repo into repo-to-crawl folder
7474
- name: Clone lotus repo
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676
with:
7777
repository: filecoin-project/lotus
7878
path: repo-to-crawl

0 commit comments

Comments
 (0)