Skip to content

Commit

Permalink
fix: set Ubuntu to 22.04 specifically
Browse files Browse the repository at this point in the history
Signed-off-by: sdawley <[email protected]>
  • Loading branch information
SDawley committed Dec 21, 2022
1 parent 2d18278 commit 97f425a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:

coverage-report:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
-
name: "Checkout Che Dashboard source code"
Expand All @@ -40,7 +40,7 @@ jobs:
run: yarn test:coverage
-
name: "Build Codecov report"
uses: codecov/codecov-action@v3.1.1
uses: codecov/codecov-action@v3
with:
files: ./packages/dashboard-frontend/coverage/lcov.info,./packages/dashboard-backend/coverage/lcov.info,./packages/common/coverage/lcov.info
flags: unittests
4 changes: 2 additions & 2 deletions .github/workflows/next-build-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:

build-images:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
create-manifest:
if: always()
needs: build-images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
-
name: "Docker quay.io Login"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:

dash-licenses:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ github.base_ref == 'main' }}
steps:
-
Expand All @@ -41,7 +41,7 @@ jobs:
run: yarn license:check

build-and-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [14.x, 16.x]
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

docker-build:
needs: build-and-test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.default == false }}
strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:

build-images:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

create-manifest:
needs: build-images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
-
name: "Docker quay.io Login"
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

tag-release:
needs: create-manifest
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
-
name: "Checkout Che Dashboard source code"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/try-in-web-ide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
add-link:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Web IDE Pull Request Check
id: try-in-web-ide
Expand Down

0 comments on commit 97f425a

Please sign in to comment.