Skip to content

Commit 6bbff94

Browse files
committed
fix: bump to ubuntu 22
1 parent 841b4ab commit 6bbff94

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.github/workflows/example-basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-basic
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
# during development we use the latest version of this action

.github/workflows/example-install-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-install-command
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
- uses: ./

.github/workflows/example-node-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-node-version
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
# pick the Node version to use and install it

.github/workflows/example-performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
# cache using https://github.com/actions/cache
1717
cache2:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Caching

.github/workflows/example-shrinkwrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-shrinkwrap
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
- uses: bahmutov/npm-install@HEAD

.github/workflows/example-subfolders.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ${{ matrix.os }}
66
strategy:
77
matrix:
8-
os: [ubuntu-20.04, windows-latest, macOS-latest]
8+
os: [ubuntu-22.04, windows-latest, macOS-latest]
99
name: Test on ${{ matrix.os }}
1010
steps:
1111
- uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ${{ matrix.os }}
3232
strategy:
3333
matrix:
34-
os: [ubuntu-20.04, windows-latest, macOS-latest]
34+
os: [ubuntu-22.04, windows-latest, macOS-latest]
3535
name: Test on ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v4

.github/workflows/example-without-lock-file.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-without-lock-file
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
- uses: bahmutov/npm-install@HEAD

.github/workflows/example-yarn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: example-yarn
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu-22.04
66
steps:
77
- uses: actions/checkout@v4
88
- uses: bahmutov/npm-install@HEAD

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [ubuntu-20.04, windows-latest, macOS-latest]
9+
os: [ubuntu-22.04, windows-latest, macOS-latest]
1010
name: Build and test on ${{ matrix.os }}
1111
steps:
1212
- name: Checkout
@@ -26,13 +26,13 @@ jobs:
2626

2727
# only makes sense to check code format on 1 OS
2828
- name: Linting 🧹
29-
if: matrix.os == 'ubuntu-20.04'
29+
if: matrix.os == 'ubuntu-22.04'
3030
run: npm run format:check
3131

3232
- run: npm test
3333

3434
release:
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-22.04
3636
name: release
3737
needs: build-and-test
3838
# only release from the master branch

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
"editor.formatOnPaste": false,
2424
"editor.formatOnType": false,
2525
"editor.formatOnSave": true,
26-
"workbench.colorTheme": "Sublime Material Theme - Light"
26+
"workbench.colorTheme": "Primer Light"
2727
}

0 commit comments

Comments
 (0)