Skip to content

Commit f967fbd

Browse files
build(deps): bump actions/checkout from 2 to 3 (#632)
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 03fef0a commit f967fbd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Run this only when the previous workflow was successfull & the initial actor was dependabot
1313
if: ${{ github.event.workflow_run.conclusion == 'success' && github.actor == 'dependabot[bot]' }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Download PR artifact
1717
uses: actions/github-script@v6
1818
with:

.github/workflows/on-merge-to-main.yml

+1-1
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
with:
2020
token: ${{ secrets.GH_PUBLISH_TOKEN }}
2121
fetch-depth: 0

.github/workflows/on-release-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: "Checkout"
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
token: ${{ secrets.GH_PUBLISH_TOKEN }}
1818
fetch-depth: 0

.github/workflows/pr_lint_and_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
env:
99
NODE_ENV: dev
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Node
1313
uses: actions/setup-node@v3
1414
with:

.github/workflows/record_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Save PR number
1414
run: |
1515
mkdir -p ./pr

.github/workflows/run-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
steps:
1717
- name: "Checkout"
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
#########################
2020
# Release new version
2121
#########################

0 commit comments

Comments
 (0)