Skip to content

Commit 7c54a2d

Browse files
dependabot[bot]jbr
authored andcommitted
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 51e6a56 commit 7c54a2d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
os: [ubuntu-latest, macOS-latest, windows-latest]
1919
rust: [stable, nightly]
2020
steps:
21-
- uses: actions/checkout@master
21+
- uses: actions/checkout@v3
2222
- name: Install ${{ matrix.rust }}
2323
uses: actions-rs/toolchain@v1
2424
with:
@@ -38,7 +38,7 @@ jobs:
3838
name: Lints and Docs
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@master
41+
- uses: actions/checkout@v3
4242
- uses: actions-rs/toolchain@v1
4343
with:
4444
toolchain: stable
@@ -61,7 +61,7 @@ jobs:
6161
name: Wasm stuff
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@master
64+
- uses: actions/checkout@v3
6565
- uses: actions-rs/toolchain@v1
6666
with:
6767
toolchain: nightly

Diff for: .github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: build rustdocs and put them on github pages
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v3
1313
- uses: actions-rs/toolchain@v1
1414
with:
1515
toolchain: stable

Diff for: .github/workflows/publish-crate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
crate:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- run: cargo publish
1313
env:
1414
CARGO_REGISTRY_TOKEN: ${{ secrets.DIVVIUP_AUTOMATON_CRATES_IO_API_TOKEN }}

0 commit comments

Comments
 (0)