Skip to content

Commit 6168616

Browse files
committed
Fix: github actions
1 parent aa14ed1 commit 6168616

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
arch: ['armv7hl', 'aarch64', 'i486']
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Prepare
2323
run: docker pull coderus/sailfishos-platform-sdk:$OS_VERSION && mkdir output
@@ -31,7 +31,7 @@ jobs:
3131
sudo cp -r RPMS/*.rpm /share/output"
3232

3333
- name: Upload RPM (${{ matrix.arch }})
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: rpm-${{ matrix.arch }}
3737
path: output
@@ -43,17 +43,17 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Download armv7hl
46-
uses: actions/download-artifact@v3
46+
uses: actions/download-artifact@v4
4747
with:
4848
name: rpm-armv7hl
4949
continue-on-error: true
5050
- name: Download aarch64
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
5353
name: rpm-aarch64
5454
continue-on-error: true
5555
- name: Download i486
56-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5757
with:
5858
name: rpm-i486
5959
continue-on-error: true

0 commit comments

Comments
 (0)