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

CI: don't use ubuntu-latest #620

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
dependency-graph:
name: Update Dependency Graph
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: Code is formatted
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout current branch (full)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/headers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions: {}
jobs:
check-headers:
name: Check headers
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
validate-links:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
compile-and-test:
name: Compile and test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-1.0-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
publish-docs:
name: Publish documentation to nightlies.apache.org
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-1.0-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish-artifacts:
name: Publish 1.0 artifacts to Apache Nexus
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-1.1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
publish-docs:
name: Publish documentation to nightlies.apache.org
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-test-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
publish-test-results:
name: "Publish details with dorny-test-reporter"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish-artifacts:
name: Publish artifacts to Apache Nexus
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:

publish-docs:
name: Publish documentation to nightlies.apache.org
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
formatting-check:
name: Checks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

compile-and-test:
name: Compile and test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko-http'
strategy:
fail-fast: false
Expand Down
Loading