Skip to content

Commit

Permalink
update github build action
Browse files Browse the repository at this point in the history
update download-artifact github action to v4
update platform sdk version to 4.6.013
update GitHub actions runner to Ubuntu 24.04
  • Loading branch information
rabauke committed Nov 20, 2024
1 parent 2e62fd9 commit 8f24048
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
[push, workflow_dispatch]

env:
OS_VERSION: 4.5.0.16
OS_VERSION: 4.6.0.13

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: Build App
strategy:
matrix:
Expand All @@ -35,20 +35,20 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
needs:
- build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Download armv7hl
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: rpm-armv7hl
continue-on-error: true
- name: Download aarch64
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: rpm-aarch64
continue-on-error: true
- name: Download i486
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: rpm-i486
continue-on-error: true
Expand Down

0 comments on commit 8f24048

Please sign in to comment.