Skip to content

Commit

Permalink
chore: Update runner image in ci_jobs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
svsool committed Nov 19, 2023
1 parent 231697b commit b50e3f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
jobs:
check-types:
name: Check Types
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Setup Node
Expand All @@ -29,7 +29,7 @@ jobs:
run: npm run ts
lint:
name: Run Linter
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Setup Node
Expand All @@ -44,7 +44,7 @@ jobs:
name: Run Tests
strategy:
matrix:
os: [macos-10.15, ubuntu-18.04, windows-2019]
os: [macos-10.15, ubuntu-22.04, windows-2019]
runs-on: ${{ matrix.os }}
env:
OS: ${{ matrix.os }}
Expand All @@ -70,7 +70,7 @@ jobs:
create_release:
name: Create Release
if: success() && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [check-types, lint, tests]
steps:
- uses: actions/checkout@v1
Expand All @@ -90,7 +90,7 @@ jobs:
markdown-memo-*.vsix
publish:
name: Publish Release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [create_release]
steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit b50e3f1

Please sign in to comment.