Skip to content

Commit

Permalink
ci: use ubuntu-24.04 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet authored Jan 20, 2025
1 parent 9ea6a0a commit 1bc3431
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pr-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Keep unique across jobs using surge preview (preview url and PR comment id).
# Use a short id to avoid reaching the surge subdomain length limit. See https://github.com/bonitasoft/actions/issues/101
demo:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write # surge-preview: PR comments
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-metadata-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
pr-title:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write # post comments when the PR title doesn't match the "Conventional Commits" rules
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- v*
jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
# required for "npm provenance"
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-create-gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
create_release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write # create the GH release
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
default: 'patch'
jobs:
bumpVersion:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: |
echo "New version type: ${{ github.event.inputs.type }}"
Expand Down

0 comments on commit 1bc3431

Please sign in to comment.