Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ubuntu to v22 #296

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout current branch
Expand All @@ -30,7 +30,7 @@ jobs:
run: ./sbt check

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
needs: lint
strategy:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
run: ./sbt ++${{ matrix.scala }}! integration/test

website:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout current branch
Expand All @@ -76,7 +76,7 @@ jobs:
run: ./sbt docs/docusaurusCreateSite

publish-local:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout current branch
Expand All @@ -93,14 +93,14 @@ jobs:
run: ./sbt +publishLocal

ci:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [ test, website, publish-local ]
steps:
- name: Aggregate outcomes
run: echo "build succeeded"

publish:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10
needs: [ ci ]
if: github.event_name != 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
publish:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout current branch
Expand Down