Skip to content

Commit c905a63

Browse files
committed
Fix ci?
1 parent 6b57119 commit c905a63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
id: rustc_version
3838
run: |
3939
rust_version=$(rustc --version | md5sum | cut -f 1-1 -d ' ')
40-
echo "##[set-output name=version;]$(echo $rust_version)"
40+
echo "version=$rust_version" >> "$GITHUB_OUTPUT"
4141
- name: Restore Cargo cache
4242
uses: actions/cache@v3
4343
with:
@@ -59,7 +59,7 @@ jobs:
5959
env:
6060
RUSTFLAGS: "--remap-path-prefix $HOME=~"
6161
- name: Upload build artifact
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: aoc-web
6565
path: aoc-web/dist
@@ -73,7 +73,7 @@ jobs:
7373

7474
steps:
7575
- name: Download the artifact
76-
uses: actions/download-artifact@v3
76+
uses: actions/download-artifact@v4
7777
with:
7878
name: aoc-web
7979
path: ./aoc-web

0 commit comments

Comments
 (0)