ci: update Ubuntu runner to ubuntu-24.04

Link: https://github.com/actions/runner-images/issues/10636
Link: https://github.com/danth/stylix/pull/519
This commit is contained in:
NAHO 2024-12-29 18:37:33 +01:00
parent 1aa931f6f1
commit fe72c2306f
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5
2 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ permissions:
jobs:
evaluate:
name: List packages
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install Nix
@ -29,7 +29,7 @@ jobs:
- name: List packages
id: list-packages
run: |
nix flake show github:${{ github.repository }}/${{ github.event.pull_request.head.sha || github.sha }} --json | jq -rc 'to_entries | map(.key as $type | select($type == "checks" or $type == "packages") | .value | to_entries | map(.key as $arch | select($arch == "x86_64-linux" or $arch == "x86_64-darwin") | .value | to_entries | map({type: $type, arch: $arch, os: (if $arch == "x86_64-linux" then "ubuntu-22.04" else "macos-14" end), key: .key})) | flatten) | flatten | "packages=\(.)"' >> $GITHUB_OUTPUT
nix flake show github:${{ github.repository }}/${{ github.event.pull_request.head.sha || github.sha }} --json | jq -rc 'to_entries | map(.key as $type | select($type == "checks" or $type == "packages") | .value | to_entries | map(.key as $arch | select($arch == "x86_64-linux" or $arch == "x86_64-darwin") | .value | to_entries | map({type: $type, arch: $arch, os: (if $arch == "x86_64-linux" then "ubuntu-24.04" else "macos-14" end), key: .key})) | flatten) | flatten | "packages=\(.)"' >> $GITHUB_OUTPUT
outputs:
packages: ${{ steps.list-packages.outputs.packages }}

View file

@ -12,7 +12,7 @@ jobs:
permissions:
contents: read
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Install Nix
@ -49,7 +49,7 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Deploy docs to GitHub Pages