Skip to content

Commit

Permalink
Switch CI to Ubuntu 22.04 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
kciesielski committed Apr 20, 2023
1 parent f735d4d commit d91fbc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
ci:
# run on external PRs, but not on internal PRs since those will be run by push to branch
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:
npm --version
- name: Install AWS CDK
run: |
npm install -g aws-cdk
npm install -g aws-cdk
cdk --version
- name: Install libidn2-dev libcurl3-dev
if: matrix.target-platform == 'Native'
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
mima:
# run on external PRs, but not on internal PRs since those will be run by push to branch
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -96,7 +96,7 @@ jobs:
name: Publish release
needs: [ci]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
STTP_NATIVE: 1
steps:
Expand Down

0 comments on commit d91fbc5

Please sign in to comment.