Skip to content
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

ci(deps): update dependency ubuntu to v24 - autoclosed #3801

Closed
wants to merge 1 commit into from
Closed
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
16 changes: 8 additions & 8 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
# Prepare the environment for the build
ci-preparation:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
makepkg-image: ${{ steps.makepkg-image.outputs.image-name }}
build-ref: ${{ steps.ci-preparation.outputs.build-ref }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
build-website:
needs:
- ci-preparation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Checkout
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

# Create a staging repository on Central
staging-repo:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- ci-preparation
if: fromJSON(needs.ci-preparation.outputs.may-deploy)
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
needs:
- assemble-and-upload
- ci-preparation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: >-
always() && needs.assemble-and-upload.result == 'success'
steps:
Expand All @@ -315,7 +315,7 @@ jobs:
needs:
- assemble-and-upload
- ci-preparation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: >-
always() && needs.assemble-and-upload.result == 'success'
container:
Expand All @@ -339,7 +339,7 @@ jobs:
needs:
- ci-preparation
- assemble-and-upload
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: >-
always() && needs.assemble-and-upload.result == 'success'
container:
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
# Strictly sequential.
group: release-${{ needs.ci-preparation.outputs.build-ref }}
cancel-in-progress: false
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
winget-deploy: ${{ steps.check-released.outputs.has-released }}
if: >-
Expand Down Expand Up @@ -555,7 +555,7 @@ jobs:
.\wingetcreate.exe update $env:packageID --version $packageVersion --urls "$installerUrl" --submit --token $gitToken

success:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- assemble-and-upload
- build
Expand Down
Loading