Skip to content

Commit 98231e4

Browse files
authored
chore(deps): update github artifact actions (major) (#1108)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v6` -> `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/download-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v6...v7) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/agbrs/agb). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
2 parents 1a06c7f + f61e9fe commit 98231e4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Build and test all crates
4747
run: just ci
4848
- name: Upload build artifacts
49-
uses: actions/upload-artifact@v5
49+
uses: actions/upload-artifact@v6
5050
with:
5151
name: example-games
5252
path: ~/target/*.gba

.github/workflows/build-site.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
RUSTUP_TOOLCHAIN: ${{ steps.checkout.outputs.toolchain }}
5353
- name: Upload artifact
54-
uses: actions/upload-artifact@v5
54+
uses: actions/upload-artifact@v6
5555
with:
5656
name: site-deps
5757
path: "target/site-deps.tar.gz"
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
fetch-depth: 0
7070
- name: Download site dependencies
71-
uses: actions/download-artifact@v6
71+
uses: actions/download-artifact@v7
7272
with:
7373
name: site-deps
7474
path: target/

.github/workflows/playground.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Save image
2929
run: docker save ghcr.io/agbrs/playground-builder:latest | zstd -9 -o playground-builder.tar.zstd
3030
- name: Upload artifact
31-
uses: actions/upload-artifact@v5
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: playground-builder
3434
path: "playground-builder.tar.zstd"
@@ -45,7 +45,7 @@ jobs:
4545
- name: Save image
4646
run: docker save ghcr.io/agbrs/playground-server:latest | zstd -9 -o playground-server.tar.zstd
4747
- name: Upload artifact
48-
uses: actions/upload-artifact@v5
48+
uses: actions/upload-artifact@v6
4949
with:
5050
name: playground-server
5151
path: "playground-server.tar.zstd"
@@ -58,11 +58,11 @@ jobs:
5858
runs-on: ubuntu-24.04
5959
steps:
6060
- name: Download playground builder
61-
uses: actions/download-artifact@v6
61+
uses: actions/download-artifact@v7
6262
with:
6363
name: playground-builder
6464
- name: Download playground server
65-
uses: actions/download-artifact@v6
65+
uses: actions/download-artifact@v7
6666
with:
6767
name: playground-server
6868
- name: Import images

0 commit comments

Comments
 (0)