Skip to content

Commit 837e5dd

Browse files
committed
Updating workflows to run on Ubuntu 24.04 as 20.04 is gone
1 parent bdf0145 commit 837e5dd

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/Publish.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
build-binary:
1212
# building on ubuntu-20.04 so we'll link to glibc 2.31 (bullseye+)
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3
@@ -54,4 +54,3 @@ jobs:
5454
curl -u "${{ secrets.DRIVE_CREDENTIALS }}" -T "/tmp/${{ env.BIN_FILENAME }}" -sw '%{http_code}' "https://drive.offspot.it/_webdav/image-creator/${{ env.BIN_FILENAME }}"
5555
echo "### Artefacts" >> $GITHUB_STEP_SUMMARY
5656
echo "- [${{ env.BIN_FILENAME }}](https://drive.offspot.it/image-creator/${{ env.BIN_FILENAME }})" >> $GITHUB_STEP_SUMMARY
57-

.github/workflows/Tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build-binary:
1414
# building on ubuntu-20.04 so we'll link to glibc 2.31 (bullseye+)
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v3
@@ -35,4 +35,3 @@ jobs:
3535
run: invoke binary --filename '/tmp/image-creator'
3636
- name: Test binary is able to start
3737
run: /tmp/image-creator -V
38-

0 commit comments

Comments
 (0)