drop support for deprecated ubuntu 18.04

add support for ubuntu 22.04
This commit is contained in:
Sardorbek Imomaliev 2022-08-29 21:59:09 +07:00
parent 46553eae11
commit 9ef8eed57e
10 changed files with 19 additions and 17 deletions

View file

@ -8,7 +8,7 @@ on:
jobs:
CodeQL-Build:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

View file

@ -10,7 +10,7 @@ permissions:
jobs:
dependency-review:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/dependency-review-action@v1

View file

@ -23,7 +23,7 @@ on:
jobs:
dev-image-test:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: make build

View file

@ -12,7 +12,7 @@ on:
jobs:
comment:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:

View file

@ -6,7 +6,7 @@ on:
jobs:
purge:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- run: >

View file

@ -7,7 +7,7 @@ on:
jobs:
release:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

View file

@ -11,8 +11,9 @@ jobs:
strategy:
matrix:
os:
- 'ubuntu-22.04'
- 'ubuntu-20.04'
- 'ubuntu-18.04'
- 'ubuntu-latest'
- 'macos-latest'
- 'windows-latest'
hugo-version:

View file

@ -16,8 +16,9 @@ jobs:
strategy:
matrix:
os:
- 'ubuntu-22.04'
- 'ubuntu-20.04'
- 'ubuntu-18.04'
- 'ubuntu-latest'
- 'macos-latest'
- 'windows-latest'
steps:
@ -35,15 +36,15 @@ jobs:
- run: npm ci
- name: Run prettier
if: startsWith(matrix.os, 'ubuntu-18.04')
if: startsWith(matrix.os, 'ubuntu-22.04')
run: npm run format:check
- name: Run eslint
if: startsWith(matrix.os, 'ubuntu-18.04')
if: startsWith(matrix.os, 'ubuntu-22.04')
run: npm run lint
- name: Run ncc
if: startsWith(matrix.os, 'ubuntu-18.04')
if: startsWith(matrix.os, 'ubuntu-22.04')
run: npm run build
- run: npm test

View file

@ -6,7 +6,7 @@ on:
jobs:
update:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3