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: s/ubuntu-latest/ubuntu-22.04/ #2254

Merged
merged 1 commit into from
Dec 29, 2024
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/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

jobs:
actionlint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1

Check warning on line 14 in .github/workflows/actionlint.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (reviewdog)
with:
reporter: github-pr-review
fail_on_error: true
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
type: string
jobs:
bump:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
jobs:
spellcheck:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/export-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ permissions:

jobs:
export_labels:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- uses: EndBug/export-label-config@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

create_pull_request:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 5
needs:
- export_labels
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
matrix:
Expand All @@ -40,7 +40,7 @@
"npx wait-on tcp:6006 && npm test"

- name: compressed-size-action
uses: preactjs/[email protected]

Check warning on line 43 in .github/workflows/node.js.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (preactjs)
with:
pattern: "./packages/ui/lib/**/*.{js,css,html,json}"
exclude: "{**/*.map,**/node_modules/**}"
Expand All @@ -48,7 +48,7 @@
- uses: codecov/codecov-action@v5

quality:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -58,15 +58,15 @@
run: biome ci .

chromatic-deployment:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Install dependencies
uses: bahmutov/npm-install@v1

Check warning on line 67 in .github/workflows/node.js.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (bahmutov)
- name: Publish to Chromatic
uses: chromaui/action@v11

Check warning on line 69 in .github/workflows/node.js.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (chromaui)
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true # 👈 Required option to enable TurboSnap
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
label_sync:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tauri.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
platform: [macos-latest, ubuntu-22.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable

Check warning on line 24 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (dtolnay)
with:
toolchain: stable
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2

Check warning on line 28 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Swatinem)
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf

Check warning on line 33 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (libwebkit)

Check warning on line 33 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (libappindicator)

Check warning on line 33 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (librsvg)

Check warning on line 33 in .github/workflows/tauri.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (patchelf)
- name: Install dependencies
uses: bahmutov/npm-install@v1
- uses: tauri-apps/tauri-action@v0
Expand All @@ -38,8 +38,8 @@
projectPath: apps/desktop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-22.04'
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: rustfmt
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-22.04'
run: cargo fmt --all --check
Loading