Skip to content

Commit

Permalink
ci: replace deprecated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Jan 29, 2024
1 parent 7cbd9e8 commit 41dd2c2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup | Checkout
uses: actions/checkout@v4

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup | Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup | Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -91,79 +91,79 @@ jobs:
${{ runner.os }}-cargo
- name: Setup | Cache | Example proxy
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/proxy/target
key: wasm32-example-proxy
restore-keys: |
wasm32-example-proxy
- name: Setup | Cache | Example seed
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/seed/target
key: wasm32-example-seed
restore-keys: |
wasm32-example-seed
- name: Setup | Cache | Example vanilla
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/vanilla/target
key: wasm32-example-vanilla
restore-keys: |
wasm32-example-vanilla
- name: Setup | Cache | Example webworker
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/webworker/target
key: wasm32-example-webworker
restore-keys: |
wasm32-example-webworker
- name: Setup | Cache | Example webworker-module
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/webworker-module/target
key: wasm32-example-webworker-module
restore-keys: |
wasm32-example-webworker-module
- name: Setup | Cache | Example webworker-gloo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/webworker-gloo/target
key: wasm32-example-webworker-gloo
restore-keys: |
wasm32-example-webworker-gloo
- name: Setup | Cache | Example yew
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/yew/target
key: wasm32-example-yew
restore-keys: |
wasm32-example-yew
- name: Setup | Cache | Example yew-tailwindcss
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/yew-tailwindcss/target
key: wasm32-example-yew-tailwindcss
restore-keys: |
wasm32-example-yew-tailwindcss
- name: Setup | Cache | Example yew-tls
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/yew-tls/target
key: wasm32-example-yew-tls
restore-keys: |
wasm32-example-yew-tls
- name: Setup | Cache | Example cdylib
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: examples/cdylib/target
key: wasm32-example-cdylib
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup | Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit 41dd2c2

Please sign in to comment.