diff options
author | deadprogram <[email protected]> | 2024-12-08 19:08:16 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-12-09 20:26:06 +0100 |
commit | ec3f387f21ed97b504eaa4e7cee6bed8cf13bdbb (patch) | |
tree | 026e258516e574021abbdf3be3854fad567e0e3f | |
parent | 31f72141561dafe3f0323599ca0307b34c3fc1da (diff) | |
download | tinygo-ec3f387f21ed97b504eaa4e7cee6bed8cf13bdbb.tar.gz tinygo-ec3f387f21ed97b504eaa4e7cee6bed8cf13bdbb.zip |
fix: specify ubuntu-22.04 during GH actions transition period to ubuntu-24.04
See https://github.com/actions/runner-images/issues/10636
Signed-off-by: deadprogram <[email protected]>
-rw-r--r-- | .github/workflows/linux.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 206e6b767..8d5976777 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -169,7 +169,7 @@ jobs: assert-test-linux: # Run all tests that can run on Linux, with LLVM assertions enabled to catch # potential bugs. - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 |