We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b57119 commit c905a63Copy full SHA for c905a63
.github/workflows/deploy.yml
@@ -37,7 +37,7 @@ jobs:
37
id: rustc_version
38
run: |
39
rust_version=$(rustc --version | md5sum | cut -f 1-1 -d ' ')
40
- echo "##[set-output name=version;]$(echo $rust_version)"
+ echo "version=$rust_version" >> "$GITHUB_OUTPUT"
41
- name: Restore Cargo cache
42
uses: actions/cache@v3
43
with:
@@ -59,7 +59,7 @@ jobs:
59
env:
60
RUSTFLAGS: "--remap-path-prefix $HOME=~"
61
- name: Upload build artifact
62
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
63
64
name: aoc-web
65
path: aoc-web/dist
@@ -73,7 +73,7 @@ jobs:
73
74
steps:
75
- name: Download the artifact
76
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
77
78
79
path: ./aoc-web
0 commit comments