Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.

Commit b875439

Browse files
chore: bump actions/checkout from 2.5.0 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.5.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/commits/v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a189e75 commit b875439

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2.5.0
11+
- uses: actions/checkout@v3
1212
- uses: nugit/actions-pr-changelog/createReleaseAction@v1.2.6
1313
with:
1414
token: ${{ secrets.GH_TOKEN }}

.github/workflows/dependabot-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.event.sender.login == 'dependabot[bot]') }}
1515
steps:
1616
- uses: haya14busa/action-workflow_run-status@v1
17-
- uses: actions/checkout@v2.4.0
17+
- uses: actions/checkout@v3
1818
with:
1919
ref: ${{ github.event.workflow_run.head_branch }}
2020
- uses: actions/setup-node@v2.5.1

.github/workflows/deploy-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
needs: deploy
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.4.0
13+
- uses: actions/checkout@v3
1414
- name: Merge master -> develop
1515
uses: devmasx/merge-branch@1.4.0
1616
with:
@@ -21,7 +21,7 @@ jobs:
2121
deploy: # Runs install once before everything to create & save cache
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v2.4.0
24+
- uses: actions/checkout@v3
2525
with:
2626
token: ${{ secrets.GH_TOKEN }}
2727
- uses: actions/setup-node@v2.5.1

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
install: # Runs install once before everything to create & save cache
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.4.0
13+
- uses: actions/checkout@v3
1414
with:
1515
token: ${{ secrets.GH_TOKEN }}
1616
- uses: actions/setup-node@v2.5.1

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- if: ${{ github.actor == 'dependabot[bot]' }}
1818
run: echo "Skipping - Will be tested in dependabot-merge"
19-
- uses: actions/checkout@v2.4.0
19+
- uses: actions/checkout@v3
2020
if: ${{ github.actor != 'dependabot[bot]' }}
2121
- uses: actions/setup-node@v2.5.1
2222
if: ${{ github.actor != 'dependabot[bot]' }}

0 commit comments

Comments
 (0)