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: Upgrade GitHub actions to Ubuntu 22.04 #4509

Merged
merged 2 commits into from
Oct 21, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push]
jobs:
cypress-axe:
name: cypress-axe
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
MAAS_URL: http://localhost:5240
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push]
jobs:
cypress:
name: Cypress
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
MAAS_URL: http://localhost:5240
steps:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
update_existing: true
docs:
name: maas.io/docs links
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@main
- name: Get branch name
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lp-to-gh-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
lp-to-gh-issues:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sitespeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
run-sitespeed:
if: github.event.pull_request.merged == true
name: Run sitespeed.io
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
MAAS_DOMAIN: localhost
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
Expand All @@ -32,7 +32,7 @@ jobs:

test:
name: Test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
Expand All @@ -55,7 +55,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
Expand All @@ -82,7 +82,7 @@ jobs:

run-dotrun:
timeout-minutes: 15
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Install dotrun
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
upload-build:
if: github.event.pull_request.merged == true
name: Upload build artifacts
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
PACKAGE_NAME: maas-ui-${{ github.sha }}.tar.gz
strategy:
Expand Down