Skip to content

Commit e58762a

Browse files
authored
refactor: try out new ubuntu version (#122)
1 parent f3f92d2 commit e58762a

15 files changed

+15
-15
lines changed

.github/workflows/00-init-playground.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
init:
88
name: Init Playground
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
init:
88
name: Init
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/01-build-playground.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
name: Build Playground
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
name: Build
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/01-cypress.yml

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

66
jobs:
77
cypress:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
timeout-minutes: 10
1010
steps:
1111
- name: ⬇️ Checkout repo

.github/workflows/01-npm-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
test:
88
name: Test
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/02-deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
deploy:
1717
name: Deploy
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1919
concurrency:
2020
group: ${{ github.workflow }}-${{ github.ref }}
2121
steps:

.github/workflows/02-npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
publish:
88
name: Publish
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/99-add-issue-to-project.yml

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

77
jobs:
88
add-issue-to-project:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: Checkout repository
1212
uses: actions/checkout@v2

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
clean:
1111
name: Clean
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1313
steps:
1414
- name: ⬇️ Checkout repo
1515
uses: actions/checkout@v4

0 commit comments

Comments
 (0)