Skip to content

Commit

Permalink
Update gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Aug 26, 2024
1 parent f0c9eb1 commit 9402a71
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
jobs:
frontend:
name: Build frontend assets
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- run: rustup target add wasm32-unknown-unknown
- uses: jetli/trunk-action@v0.4.0
- uses: jetli/trunk-action@v0.5.0
with:
version: 'v0.16.0'
version: 'latest'

- uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
prepare:
name: Prepare release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Release
Expand All @@ -24,15 +24,15 @@ jobs:

frontend:
name: Build frontend assets
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- run: rustup target add wasm32-unknown-unknown
- uses: jetli/trunk-action@v0.4.0
- uses: jetli/trunk-action@v0.5.0
with:
version: 'v0.16.0'
version: 'latest'

- uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -69,31 +69,31 @@ jobs:
- linux-arm64-musl
include:
- name: linux-x86-64-gnu
os: ubuntu-20.04
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
platform: ~
cross: false

- name: linux-armv7-gnu
os: ubuntu-20.04
os: ubuntu-22.04
target: armv7-unknown-linux-gnueabihf
platform: ~
cross: true

- name: linux-arm64-gnu
os: ubuntu-20.04
os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
platform: ~
cross: true

- name: linux-x86-64-musl
os: ubuntu-20.04
os: ubuntu-22.04
target: x86_64-unknown-linux-musl
platform: amd64
cross: true

- name: linux-arm64-musl
os: ubuntu-20.04
os: ubuntu-22.04
target: aarch64-unknown-linux-musl
platform: arm64
cross: true
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
release:
name: Release
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 9402a71

Please sign in to comment.