You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ A GitHub Action that executes commands on non-x86 CPU architecture (armv6, armv7
15
15
This action requires three input parameters:
16
16
17
17
*`arch`: CPU architecture: `armv6`, `armv7`, `aarch64`, `riscv64`, `s390x`, or `ppc64le`. See [Supported Platforms](#supported-platforms) for the full matrix.
18
-
*`distro`: Linux distribution name: `ubuntu22.04`,`ubuntu20.04`, `bookworm`,`bullseye`, `buster`, `stretch`, `fedora_latest`, `alpine_latest` or `archarm_latest`. See [Supported Platforms](#supported-platforms) for the full matrix.
18
+
*`distro`: Linux distribution name: `ubuntu24.04`,`ubuntu22.04`,`ubuntu20.04`, `bookworm`,`bullseye`, `buster`, `stretch`, `fedora_latest`, `alpine_latest` or `archarm_latest`. See [Supported Platforms](#supported-platforms) for the full matrix.
19
19
*`run`: Shell commands to execute in the container.
20
20
21
21
The action also accepts some optional input parameters:
@@ -38,16 +38,16 @@ on: [push, pull_request]
38
38
jobs:
39
39
armv7_job:
40
40
# The host should always be Linux
41
-
runs-on: ubuntu-22.04
42
-
name: Build on ubuntu-22.04 armv7
41
+
runs-on: ubuntu-24.04
42
+
name: Build on ubuntu-24.04 armv7
43
43
steps:
44
44
- uses: actions/checkout@v4
45
45
- uses: uraimo/run-on-arch-action@v3
46
46
name: Run commands
47
47
id: runcmd
48
48
with:
49
49
arch: armv7
50
-
distro: ubuntu22.04
50
+
distro: ubuntu24.04
51
51
52
52
# Not required, but speeds up builds by storing container images in
53
53
# a GitHub package registry.
@@ -74,22 +74,22 @@ on: [push, pull_request]
74
74
jobs:
75
75
build_job:
76
76
# The host should always be linux
77
-
runs-on: ubuntu-22.04
77
+
runs-on: ubuntu-24.04
78
78
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}
79
79
80
80
# Run steps on a matrix of 4 arch/distro combinations
0 commit comments