Skip to content

Commit

Permalink
Migrate to the ubuntu-24.04 GitHub Actions runner
Browse files Browse the repository at this point in the history
The ubuntu-20.04 runner is due to be deprecated on 2025-02-01 and unsupported by 2025-04-01.
  • Loading branch information
Ortham committed Jan 13, 2025
1 parent 322dc06 commit 9d272d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

env:
ICU_MAJOR_VERSION: 71
Expand All @@ -32,7 +32,7 @@ jobs:
with:
path: ${{ env.LIBLOOT_INSTALL_PATH }}
# Key includes ICU major version because libloot links against it as a shared library.
key: ${{ runner.os }}-libloot-${{ env.LIBLOOT_VERSION }}-icu-${{ env.ICU_MAJOR_VERSION }}
key: ${{ runner.name }}-libloot-${{ env.LIBLOOT_VERSION }}-icu-${{ env.ICU_MAJOR_VERSION }}

- name: Get descriptive version
id: get-version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
create_release:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
git_tag: ${{ steps.get-git-tag.outputs.name }}
Expand All @@ -32,7 +32,7 @@ jobs:
The `metadata-validator.tar.xz` file contains a Linux binary.
linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: create_release

env:
Expand All @@ -53,7 +53,7 @@ jobs:
with:
path: ${{ env.LIBLOOT_INSTALL_PATH }}
# Key includes ICU major version because libloot links against it as a shared library.
key: ${{ runner.os }}-libloot-${{ env.LIBLOOT_VERSION }}-icu-${{ env.ICU_MAJOR_VERSION }}
key: ${{ runner.name }}-libloot-${{ env.LIBLOOT_VERSION }}-icu-${{ env.ICU_MAJOR_VERSION }}

- name: Get descriptive version
id: get-version
Expand Down

0 comments on commit 9d272d2

Please sign in to comment.