Skip to content

Commit 7bdb024

Browse files
committed
try fix riscv64
1 parent 01c763a commit 7bdb024

8 files changed

Lines changed: 540 additions & 82 deletions

File tree

.github/workflows/build-on-change.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
has_changes: ${{ steps.filter.outputs.has_changes }}
4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 2
4747

@@ -139,7 +139,7 @@ jobs:
139139
cached_status=$(echo "$cached_info" | jq -r '.last_build_status // ""' 2>/dev/null || echo "")
140140
141141
if [ "$cached_hash" == "$current_hash" ] && [ "$cached_status" == "success" ]; then
142-
echo "::notice::Skipping $pkg_name - already built with same hash"
142+
echo "::notice::Skipping $pkg_name - already built with same hash" >&2
143143
continue
144144
fi
145145
fi
@@ -185,7 +185,7 @@ jobs:
185185
runs-on: ubuntu-latest
186186
steps:
187187
- name: Checkout repository
188-
uses: actions/checkout@v4
188+
uses: actions/checkout@v6
189189

190190
- name: Download tools
191191
run: |
@@ -203,7 +203,7 @@ jobs:
203203
sbuild-cache --cache /tmp/build_cache.sdb init
204204
205205
- name: Download build status artifacts
206-
uses: actions/download-artifact@v4
206+
uses: actions/download-artifact@v7
207207
with:
208208
pattern: build-status-*
209209
path: /tmp/build-statuses

.github/workflows/manual-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
valid: ${{ steps.validate.outputs.valid }}
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Validate recipe
3838
id: validate

0 commit comments

Comments
 (0)