Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
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] <support@github.com>
  • Loading branch information
dependabot[bot] committed Mar 23, 2022
1 parent d753dbd commit 29b4b92
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-many.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-many.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
needs: wait-build
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-many.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
needs: wait-build
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Prepare and run tests
uses: ./.github/actions/run-test
Expand All @@ -46,7 +46,7 @@ jobs:
needs: on-linux
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Prepare and run tests
uses: ./.github/actions/run-test
Expand All @@ -61,7 +61,7 @@ jobs:
needs: on-macos
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Prepare and run tests
uses: ./.github/actions/run-test
Expand All @@ -76,7 +76,7 @@ jobs:
needs: on-windows
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

0 comments on commit 29b4b92

Please sign in to comment.