Skip to content

Commit

Permalink
chore: Update runner image in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
svsool committed Nov 19, 2023
1 parent 3315c30 commit 3129eec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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 @@ -27,7 +27,7 @@ jobs:
run: yarn 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 @@ -40,7 +40,7 @@ jobs:
run: yarn lint
tests:
name: Run Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Setup Node
Expand All @@ -54,7 +54,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 @@ -74,7 +74,7 @@ jobs:
axios-better-stacktrace-*.tgz
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 3129eec

Please sign in to comment.