Skip to content

Commit 90f53d1

Browse files
authored
Update github actions
1 parent e121ade commit 90f53d1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
test:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
8+
- uses: actions/checkout@v4
99
- name: Cache cargo bin
10-
uses: actions/cache@v2
10+
uses: actions/cache@v4
1111
with:
1212
path: ~/.cargo/bin
1313
key: ${{ runner.os }}-cargo-bin
@@ -18,7 +18,7 @@ jobs:
1818
nits:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Install cargo deadlinks
2323
run: |
2424
curl -L -o ~/.cargo/bin/cargo-deadlinks https://github.com/deadlinks/cargo-deadlinks/releases/download/0.4.2/deadlinks-linux

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
docs:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
persist-credentials: false
1313
- name: Build Docs
1414
run: |
1515
cargo doc --no-deps --all-features
1616
touch target/doc/.nojekyll # prevent jekyll from running
1717
- name: Deploy 🚀
18-
uses: JamesIves/github-pages-deploy-action@4.1.5
18+
uses: JamesIves/github-pages-deploy-action@4.7.3
1919
with:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121
BRANCH: gh-pages # The branch the action should deploy to.

0 commit comments

Comments
 (0)