Compare commits

..

3 Commits

Author SHA1 Message Date
Paul Makles
7a17165c24 ci: try pin to 20.04 2024-12-22 15:24:36 +00:00
Paul Makles
d7213fa409 fix(ci): try to work-around runner being killed 2024-12-22 14:13:30 +00:00
Paul Makles
479f0402ca ci: switch to ubuntu 24.04 pre-emptively
trying to fix build cancellations
2024-12-22 13:30:27 +00:00

View File

@@ -27,12 +27,14 @@ permissions:
jobs:
base:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: Build base image
steps:
# Configure build environment
- name: Checkout
uses: actions/checkout@v3
- name: Fix https://github.com/actions/runner-images/issues/9959
run: sudo apt-get autopurge -y needrestart
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
@@ -57,7 +59,7 @@ jobs:
publish:
needs: [base]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name != 'pull_request'
strategy:
matrix:
@@ -67,6 +69,8 @@ jobs:
# Configure build environment
- name: Checkout
uses: actions/checkout@v3
- name: Fix https://github.com/actions/runner-images/issues/9959
run: sudo apt-get autopurge -y needrestart
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2