Skip to content

Commit a0c8aa2

Browse files
authored
ci: use ubuntu-24.04 (#289)
Notice that build with R v3.6.3 is failing, but it already failed with ubuntu 22.
1 parent 0591d31 commit a0c8aa2

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
config:
43-
- {os: ubuntu-22.04, r: '3.6.3'}
44-
- {os: ubuntu-22.04, r: '4.1.1'}
43+
- {os: ubuntu-24.04, r: '3.6.3'}
44+
- {os: ubuntu-24.04, r: '4.1.1'}
4545
# CRAN submission required to use this R version
46-
- {os: ubuntu-22.04, r: 'release'}
46+
- {os: ubuntu-24.04, r: 'release'}
4747

4848
env:
4949
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

.github/workflows/fill-gh-draft-release.yml

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

99
jobs:
1010
update_release_draft:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
permissions:
1313
# To create or update releases
1414
# https://docs.github.com/en/rest/reference/permissions-required-for-github-apps#permission-on-contents

.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/publish-documentation-pr-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
# for Pull Request
2424
pr_preview: # the id is used by surge to generate the surge url
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-24.04
2626
permissions:
2727
pull-requests: write # surge-preview: PR comments
2828
steps:

.github/workflows/publish-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727
jobs:
2828
# Build job
2929
build:
30-
runs-on: ubuntu-22.04
30+
runs-on: ubuntu-24.04
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Build
@@ -50,7 +50,7 @@ jobs:
5050
environment:
5151
name: github-pages
5252
url: ${{ steps.deployment.outputs.page_url }}
53-
runs-on: ubuntu-22.04
53+
runs-on: ubuntu-24.04
5454
steps:
5555
- name: Deploy to GitHub Pages
5656
id: deployment

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
default: 'patch'
1010
jobs:
1111
bumpVersion:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- run: |
1515
echo "New version type: ${{ github.event.inputs.type }}"

.github/workflows/update-bpmn-visualization-version.yml

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

1111
jobs:
1212
updateVersion:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
env:
1515
VERSION: ${{ github.event.client_payload.version || github.event.inputs.version }}
1616
steps:

0 commit comments

Comments
 (0)