Skip to content

Commit 3dfe033

Browse files
committed
update actions/upload-artifact@v3->actions/upload-artifact@v4, actions/cache@v3->actions/cache@v4
1 parent 5acfb02 commit 3dfe033

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-on-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
shell: bash
4545
run: make -j2 doc
4646
- name: Upload a documents snapshot.
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: docs
5050
path: ./html

.github/workflows/snapshot-on-push-master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ jobs:
8686
mv cc65.zip cc65-snapshot-win32.zip
8787
8888
- name: Upload a 32-bit Snapshot Zip
89-
uses: actions/upload-artifact@v3
89+
uses: actions/upload-artifact@v4
9090
with:
9191
name: cc65-snapshot-win32
9292
path: cc65-snapshot-win32.zip
9393
- name: Upload a 64-bit Snapshot Zip
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: cc65-snapshot-win64
9797
path: cc65-snapshot-win64.zip
@@ -120,7 +120,7 @@ jobs:
120120
- name: Package offline documents.
121121
run: 7z a cc65-snapshot-docs.zip ./html/*.*
122122
- name: Upload a Documents Snapshot Zip
123-
uses: actions/upload-artifact@v3
123+
uses: actions/upload-artifact@v4
124124
with:
125125
name: cc65-snapshot-docs
126126
path: cc65-snapshot-docs.zip

.github/workflows/windows-test-scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: mkdir ~/.cache-sha
3131

3232
- name: Cache SHA
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
id: check-sha
3535
with:
3636
path: ~/.cache-sha

0 commit comments

Comments
 (0)