Skip to content

Commit cd0cc10

Browse files
committed
chore: update dependencies
Signed-off-by: ZHANG Yuntian <yt@radxa.com>
1 parent 4e9c5b4 commit cd0cc10

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/actions/build/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ runs:
9090
find . -type f -exec sha512sum {} \; | tee "${BUILD_TUPLE}_${{ inputs.timestamp }}.sha512sum"
9191
- name: Upload build outputs to Artifacts
9292
if: inputs.artifacts == 'true'
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v6
9494
with:
9595
name: ${{ steps.prep.outputs.BUILD_TUPLE }}
9696
path: out/**/*

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "artifacts_path=$(realpath ..)" >> "$GITHUB_OUTPUT"
4747
shell: "bash"
4848
- name: "Upload artifacts"
49-
uses: "actions/upload-artifact@v5"
49+
uses: "actions/upload-artifact@v6"
5050
with:
5151
name: "${{ github.event.repository.name }}"
5252
path: |
@@ -73,7 +73,7 @@ jobs:
7373
- name: "Checkout"
7474
uses: "actions/checkout@v6"
7575
- name: "Download generated debs"
76-
uses: "actions/download-artifact@v6"
76+
uses: "actions/download-artifact@v7"
7777
with:
7878
name: "${{ github.event.repository.name }}"
7979
path: ".artifacts"

src/share/rsdk/infra-package/.github/workflows/release.yaml.jsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function() std.manifestYamlDoc(
9494
},
9595
{
9696
name: "Upload artifacts",
97-
uses: "actions/upload-artifact@v5",
97+
uses: "actions/upload-artifact@v6",
9898
with: {
9999
name: "${{ github.event.repository.name }}",
100100
path: |||
@@ -133,7 +133,7 @@ function() std.manifestYamlDoc(
133133
},
134134
{
135135
name: "Download generated debs",
136-
uses: "actions/download-artifact@v6",
136+
uses: "actions/download-artifact@v7",
137137
with: {
138138
name: "${{ github.event.repository.name }}",
139139
path: ".artifacts",

src/share/rsdk/infra-repo/.github/workflows/build.yaml.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function(
130130
},
131131
{
132132
name: "Download Pages artifact",
133-
uses: "actions/download-artifact@v6",
133+
uses: "actions/download-artifact@v7",
134134
with: {
135135
name: "github-pages",
136136
},

0 commit comments

Comments
 (0)