Skip to content

Commit 44cc732

Browse files
committed
Upgrade runners
1 parent 9872dd9 commit 44cc732

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/cache-cleanup.yml

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

1010
jobs:
1111
cleanup:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Cleanup
1515
env:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
analyze:
1818
name: Analyze
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04
2020
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event.pull_request.head.repo.full_name != github.repository
2121

2222
steps:

.github/workflows/coveralls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
strategy:
1717
matrix:
1818
node-version: [20, 22]
@@ -53,7 +53,7 @@ jobs:
5353
5454
finish-coverage:
5555
needs: build
56-
runs-on: ubuntu-latest
56+
runs-on: ubuntu-24.04
5757
if: ${{ always() }}
5858
steps:
5959
- name: Coveralls Finished

.github/workflows/lint-check.yml

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

2424
jobs:
2525
lint:
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-24.04
2727

2828
steps:
2929
- name: Checkout code

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
jobs:
3838
# 3. Testing jobs (grouped together)
3939
build:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-24.04
4141
strategy:
4242
matrix:
4343
node-version: [20, 22]
@@ -92,7 +92,7 @@ jobs:
9292
# 4. Coverage reporting (depends on tests)
9393
coverage-report:
9494
needs: [build]
95-
runs-on: ubuntu-latest
95+
runs-on: ubuntu-24.04
9696
if: ${{ always() }}
9797
steps:
9898
- name: Coveralls Finished
@@ -104,7 +104,7 @@ jobs:
104104
# 5. Publishing job (main deployment logic)
105105
publish-github-packages:
106106
needs: [build, coverage-report]
107-
runs-on: ubuntu-latest
107+
runs-on: ubuntu-24.04
108108
permissions:
109109
contents: write
110110
packages: write

.github/workflows/stale-pr.yml

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

1010
jobs:
1111
stale:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313

1414
steps:
1515
- uses: actions/stale@v9

.github/workflows/validate-workflows.yml

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

1111
jobs:
1212
validate:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4

0 commit comments

Comments
 (0)