Skip to content

Commit cce40bc

Browse files
authored
Update README.md
1 parent a0b3f49 commit cce40bc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A GitHub Action that executes commands on non-x86 CPU architecture (armv6, armv7
1515
This action requires three input parameters:
1616

1717
* `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.
1919
* `run`: Shell commands to execute in the container.
2020

2121
The action also accepts some optional input parameters:
@@ -38,16 +38,16 @@ on: [push, pull_request]
3838
jobs:
3939
armv7_job:
4040
# 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
4343
steps:
4444
- uses: actions/checkout@v4
4545
- uses: uraimo/run-on-arch-action@v3
4646
name: Run commands
4747
id: runcmd
4848
with:
4949
arch: armv7
50-
distro: ubuntu22.04
50+
distro: ubuntu24.04
5151

5252
# Not required, but speeds up builds by storing container images in
5353
# a GitHub package registry.
@@ -74,22 +74,22 @@ on: [push, pull_request]
7474
jobs:
7575
build_job:
7676
# The host should always be linux
77-
runs-on: ubuntu-22.04
77+
runs-on: ubuntu-24.04
7878
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}
7979
8080
# Run steps on a matrix of 4 arch/distro combinations
8181
strategy:
8282
matrix:
8383
include:
8484
- arch: aarch64
85-
distro: ubuntu22.04
85+
distro: ubuntu24.04
8686
- arch: aarch64
8787
distro: bullseye
8888
- arch: ppc64le
8989
distro: alpine_latest
9090
- arch: none
9191
distro: none
92-
base_image: --platform=linux/riscv64 riscv64/ubuntu:22.04
92+
base_image: --platform=linux/riscv64 riscv64/ubuntu:24.04
9393
steps:
9494
- uses: actions/checkout@v4
9595
- uses: uraimo/run-on-arch-action@v3
@@ -160,11 +160,11 @@ This table details the valid `arch`/`distro` combinations:
160160
| arch | distro |
161161
| -------- | ---------- |
162162
| armv6 | stretch, buster, bullseye, bookworm, alpine_latest |
163-
| armv7 | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, fedora_latest, alpine_latest, archarm_latest |
164-
| aarch64 | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, fedora_latest, alpine_latest, archarm_latest |
165-
| riscv64 | ubuntu20.04, ubuntu22.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_edge |
166-
| s390x | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_latest |
167-
| ppc64le | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_latest |
163+
| armv7 | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04 ubuntu24.04,, ubuntu_latest, ubuntu_rolling, ubuntu_devel, fedora_latest, alpine_latest, archarm_latest |
164+
| aarch64 | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu24.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, fedora_latest, alpine_latest, archarm_latest |
165+
| riscv64 | ubuntu20.04, ubuntu22.04, ubuntu24.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_edge |
166+
| s390x | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu24.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_latest |
167+
| ppc64le | stretch, buster, bullseye, bookworm, ubuntu20.04, ubuntu22.04, ubuntu24.04, ubuntu_latest, ubuntu_rolling, ubuntu_devel, alpine_latest |
168168

169169

170170
Using an invalid `arch`/`distro` combination will fail.

0 commit comments

Comments
 (0)