-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,14 +15,14 @@ env: | |
jobs: | ||
cancel_previous_runs: | ||
name: Cancel Previous Runs | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
free-disk-space: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Free Disk Space (Ubuntu) | ||
uses: jlumbroso/free-disk-space@main | ||
|
@@ -42,7 +42,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-22.04 ] | ||
os: [ ubuntu-latest ] | ||
check: [ | ||
# Test for no-std compatibility. | ||
# `--locked` to enforce an up-to-date Cargo.lock | ||
|
@@ -166,7 +166,7 @@ jobs: | |
taplo-fmt: | ||
name: "Taplo fmt" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
container: "tamasfe/taplo:latest" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -176,7 +176,7 @@ jobs: | |
|
||
license-check: | ||
name: "License check" | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -202,7 +202,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-22.04 ] | ||
os: [ ubuntu-latest ] | ||
example: [ | ||
benchmark_bulk_xt, | ||
compose_extrinsic, | ||
|
@@ -263,7 +263,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-22.04 ] | ||
os: [ ubuntu-latest ] | ||
example: [ | ||
wasm_example, | ||
] | ||
|
@@ -283,7 +283,7 @@ jobs: | |
run: wasmtime --invoke main ${{ matrix.example }}.wasm 0 0 | ||
|
||
merge: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
needs: [examples, wasm_examples] | ||
steps: | ||
- name: Merge Artifacts | ||
|