Skip to content

Commit d515daf

Browse files
authored
ci: use ubuntu-24.04 (#397)
1 parent a40ee6a commit d515daf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/post-release-create-gh-release_Examples_repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
create_release:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
permissions:
1212
contents: write # create the GH release
1313
steps:

.github/workflows/pr-metadata-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
pr-title:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
permissions:
1111
pull-requests: write # post comments when the PR title doesn't match the "Conventional Commits" rules
1212
steps:

.github/workflows/surge-pr-fork-01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build-preview:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414

1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/surge-pr-fork-02-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# MUST be unique across all surge preview deployments for a repository as the job id is used in the deployment URL
1414
# MUST be kept in sync with the job id of the teardown stage (used in the deployment URL)
1515
deploy:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
1818

1919
steps:

.github/workflows/surge-preview-for-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
demo_preview: # the id is used by surge to generate the surge url
18-
runs-on: ${{ vars.RUNNER_UBUNTU || 'ubuntu-20.04' }}
18+
runs-on: ${{ vars.RUNNER_UBUNTU || 'ubuntu-24.04' }}
1919
steps:
2020
- uses: bonitasoft/actions/packages/surge-preview-tools@v3
2121
id: surge-preview-tools

0 commit comments

Comments
 (0)