Skip to content

Commit d8b67e5

Browse files
committed
Upgrade github actions' versions.
1 parent ff533d5 commit d8b67e5

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4
29-
- uses: EmbarkStudios/cargo-deny-action@v1
29+
- uses: EmbarkStudios/cargo-deny-action@v2
3030

3131
- name: cargo-about cache
3232
id: cargo-about-cache
@@ -111,9 +111,10 @@ jobs:
111111
run: du -sh target/coverage target/llvm-cov-target
112112

113113
- name: Upload to codecov.io
114-
uses: codecov/codecov-action@v3
114+
uses: codecov/codecov-action@v4
115115
with:
116116
files: ./target/coverage/lcov.info
117+
token: ${{ secrets.CODECOV_TOKEN }}
117118

118119
build_and_test_linux:
119120
name: Build and Test (Linux)

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: cargo-leptos cache
4242
id: cargo-leptos-cache
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/.cargo/bin/cargo-leptos
4646
key: cargo-leptos-${{ runner.os }}
@@ -50,7 +50,7 @@ jobs:
5050
run: cargo install cargo-leptos
5151

5252
- name: Setup Pages
53-
uses: actions/configure-pages@v3
53+
uses: actions/configure-pages@v5
5454

5555
- name: Download and install tailwindcss binary
5656
run: npm install -D tailwindcss
@@ -85,4 +85,4 @@ jobs:
8585

8686
- name: Deploy to GitHub Pages
8787
id: deployment
88-
uses: actions/deploy-pages@v2
88+
uses: actions/deploy-pages@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: cargo-release Cache
6060
id: cargo_release_cache
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: ~/.cargo/bin/cargo-release
6464
key: ${{ runner.os }}-cargo-release

0 commit comments

Comments
 (0)