Skip to content

ci(deps): update dependency ubuntu to v24 (main) #3990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

release:
needs: [build]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 15

permissions:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 15

outputs:
Expand All @@ -41,7 +41,7 @@ jobs:
run: echo "uid=$(uuidgen)" >> ${GITHUB_OUTPUT}

lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
timeout-minutes: 15
permissions:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
check_all_files_with_shebangs: 'true'

bats:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
timeout-minutes: 15

Expand All @@ -102,7 +102,7 @@ jobs:
run: pnpm test:bats

vitest:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
timeout-minutes: 15

Expand All @@ -124,7 +124,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
timeout-minutes: 15

Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
matrix:
arch:
- name: x86_64
os: ubuntu-22.04
os: ubuntu-24.04
tag: amd64
- name: aarch64
os: ubuntu-22.04-arm
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
# CONTAINERBASE_CDN: ${{ vars.CONTAINERBASE_CDN }}

distro:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- bats
- lint
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
- latest
arch:
- name: x86_64
os: ubuntu-22.04
os: ubuntu-24.04
tag: amd64
- name: aarch64
os: ubuntu-22.04-arm
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
needs:
- distro
- lang
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
if: always()
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
devcontainer-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.event.pull_request.draft != true
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: {}

jobs:
trivy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
security-events: write
Expand Down
Loading