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

Fix runner Ubuntu version to 22 #5578

Merged
merged 1 commit into from
Jan 6, 2025
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-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:
jobs:
images:
name: Check images
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Check images for alt text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundler-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
test-tree-shaking:
name: Test tree shaking
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

env:
PUPPETEER_SKIP_DOWNLOAD: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/diff-change-to-dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
generate-diff:
name: Generate diff
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Skip workflows other than PRs such as merges to `main` but
# also when token write permissions are unavailable on forks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/diff-change-to-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
generate-diff:
name: Generate diff
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Skip workflows other than PRs such as merges to `main` but
# also when token write permissions are unavailable on forks
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/sass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
dart-sass:
name: Dart Sass v1.0.0
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
dart-sass-latest:
name: Dart Sass v1 (latest)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
# Node Sass v5.0.0 = LibSass v3.5.5
lib-sass:
name: LibSass v3.5.5 (deprecated)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
# Node Sass v8.x = LibSass v3 latest
lib-sass-latest:
name: LibSass v3 (latest, deprecated)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
ruby-sass:
name: Ruby Sass v3.4.0 (deprecated)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
ruby-sass-latest:
name: Ruby Sass v3 (latest, deprecated)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
screenshots:
name: Send screenshots
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

env:
PERCY_POSTINSTALL_BROWSER: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
generate-stats:
name: Generate stats
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Skip workflows other than PRs such as merges to `main` but
# also when token write permissions are unavailable on forks
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

matrix:
runner:
- ubuntu-latest
- ubuntu-22.04
- windows-latest

steps:
Expand All @@ -48,7 +48,7 @@ jobs:

matrix:
runner:
- ubuntu-latest
- ubuntu-22.04
- windows-latest

steps:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

matrix:
runner:
- ubuntu-latest
- ubuntu-22.04
- windows-latest

task:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:

matrix:
runner:
- ubuntu-latest
- ubuntu-22.04
- windows-latest

task:
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

matrix:
runner:
- ubuntu-latest
- ubuntu-22.04
- windows-latest

task:
Expand All @@ -242,7 +242,7 @@ jobs:

package:
name: Export ${{ matrix.conditions }}, Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [install, build]

strategy:
Expand Down
Loading