Skip to content

Commit ce8230d

Browse files
authored
Bump macos version to 13 and node to 20 in CI (#386)
macOS builders are failing with major version 12 because it's deprecated now actions/runner-images#10721
1 parent 2f798ee commit ce8230d

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/buildapp.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
strategy:
1010
matrix:
11-
os: [macos-12, ubuntu-latest]
11+
os: [macos-13, ubuntu-latest]
1212
platform: [windows, linux]
1313
exclude:
14-
- os: macos-12
14+
- os: macos-13
1515
platform: windows
1616

1717
steps:
@@ -21,7 +21,8 @@ jobs:
2121
- name: Install Node.js, NPM and Yarn
2222
uses: actions/setup-node@v2
2323
with:
24-
node-version: '18'
24+
node-version: '20'
25+
cache: 'yarn'
2526

2627
- name: Cache Dirs
2728
uses: actions/cache@v2
@@ -105,4 +106,4 @@ jobs:
105106
yarn --link-duplicates --pure-lockfile --ignore-engines install
106107
yarn run $YARN_BUILD_CMD
107108
fi
108-
109+

.github/workflows/integration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Node.js, NPM and Yarn
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
cache: 'yarn'
2222

2323
- name: Yarn Install

.github/workflows/lint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- name: Install Node.js, NPM and Yarn
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 18
16+
node-version: 20
1717
cache: 'yarn'
1818

1919
- name: Yarn Install
2020
run: yarn install --frozen-lockfile --ignore-optional
2121

2222
- name: Yarn Lint
23-
run: yarn lint
23+
run: yarn lint

.github/workflows/npm-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-node@v3
1212
with:
13-
node-version: '18.x'
13+
node-version: 20
1414
registry-url: 'https://registry.npmjs.org'
1515
cache: 'yarn'
1616

0 commit comments

Comments
 (0)