Skip to content

Commit

Permalink
Bump actions/checkout from 2.3.4 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.4...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>
  • Loading branch information
dependabot[bot] authored Apr 5, 2022
1 parent c03e500 commit 46bd84c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
outputs:
version-nr: ${{ steps.determine-npm-version.outputs.version-nr }}
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Mark GitHub Deployment as in progress
id: start-deployment
uses: octokit/request-action@v2.1.0
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
node-version: [16.x, 14.x]
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
Expand All @@ -196,7 +196,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
# https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.4.1
with:
node-version: ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ubuntu-20.04, windows-2019, macos-10.15]
node-version: [16.x, 14.x, 12.x]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
if: ${{github.event.deployment_status.state == 'success'}} && github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v2.1.5
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [prepare-deployment]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Mark GitHub Deployment as in progress
id: start-deployment
uses: octokit/request-action@v2.1.0
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
node-version: [16.x, 14.x]
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
Expand All @@ -125,7 +125,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: '16.x'
Expand All @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: '16.x'
Expand All @@ -171,7 +171,7 @@ jobs:
node-version: [16.x]
needs: [prepare-deployment, publish-npm]
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit 46bd84c

Please sign in to comment.