Skip to content

Commit

Permalink
Merge pull request #5578 from alphagov/bk-fix-ubuntu-to-22
Browse files Browse the repository at this point in the history
Fix runner Ubuntu version to 22
  • Loading branch information
domoscargin authored Jan 6, 2025
2 parents 4835fde + 1a517ce commit 8fbdd9d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
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

0 comments on commit 8fbdd9d

Please sign in to comment.