Skip to content

Commit 2cf055c

Browse files
committed
ci: test on Debian instead of on Ubuntu
1 parent 852636a commit 2cf055c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
quality:
99
name: Quality checks (Node ${{ matrix.node }})
10-
runs-on: ubuntu-latest
10+
runs-on: debian-latest
1111
strategy:
1212
fail-fast: false
1313
matrix:
@@ -64,7 +64,7 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
os: [ubuntu-latest, macos-latest, windows-latest]
67+
os: [debian-latest, macos-latest, windows-latest]
6868
steps:
6969
- name: Checkout
7070
uses: actions/checkout@v4

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
github.event.workflow_run.conclusion == 'success' &&
1313
github.event.workflow_run.head_branch == 'master' &&
1414
!startsWith(github.event.workflow_run.head_commit.message, 'chore(release)')
15-
runs-on: ubuntu-latest
15+
runs-on: debian-latest
1616
permissions:
1717
contents: write
1818
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
github.event.workflow_run.conclusion == 'success' &&
1313
github.event.workflow_run.head_branch == 'master' &&
1414
startsWith(github.event.workflow_run.head_commit.message, 'chore(release)')
15-
runs-on: ubuntu-latest
15+
runs-on: debian-latest
1616
strategy:
1717
fail-fast: false
1818
matrix:
@@ -70,7 +70,7 @@ jobs:
7070
github.event.workflow_run.conclusion == 'success' &&
7171
github.event.workflow_run.head_branch == 'master' &&
7272
startsWith(github.event.workflow_run.head_commit.message, 'chore(release)')
73-
runs-on: ubuntu-latest
73+
runs-on: debian-latest
7474
permissions:
7575
contents: write
7676
id-token: write

0 commit comments

Comments
 (0)