|
25 | 25 | runs-on: "ubuntu-22.04" |
26 | 26 | if: ${{ github.event_name == 'pull_request' }} |
27 | 27 | steps: |
28 | | - - name: 'Checkout Repository' |
| 28 | + - name: "Checkout Repository" |
29 | 29 | uses: actions/checkout@v4 |
30 | | - - name: 'Dependency Review' |
| 30 | + - name: "Dependency Review" |
31 | 31 | uses: actions/dependency-review-action@v4 |
32 | 32 |
|
33 | 33 | lint-rust: |
|
83 | 83 | strategy: |
84 | 84 | matrix: |
85 | 85 | config: |
86 | | - - { |
87 | | - arch: "aarch64", |
88 | | - target: "aarch64-unknown-linux-musl" |
89 | | - } |
90 | | - - { |
91 | | - arch: "amd64", |
92 | | - target: "x86_64-unknown-linux-musl" |
93 | | - } |
| 86 | + - { arch: "aarch64", target: "aarch64-unknown-linux-musl" } |
| 87 | + - { arch: "amd64", target: "x86_64-unknown-linux-musl" } |
94 | 88 | steps: |
95 | 89 | - uses: actions/checkout@v3 |
96 | 90 |
|
@@ -141,7 +135,6 @@ jobs: |
141 | 135 | name: spin-${{ matrix.os }} |
142 | 136 | path: target/release/spin${{ matrix.os == 'windows-latest' && '.exe' || '' }} |
143 | 137 |
|
144 | | - |
145 | 138 | test-spin: |
146 | 139 | name: Test Spin |
147 | 140 | runs-on: ${{ matrix.runner }} |
@@ -198,16 +191,18 @@ jobs: |
198 | 191 | - name: Install Rust wasm target |
199 | 192 | run: rustup target add wasm32-wasip1 wasm32-unknown-unknown |
200 | 193 | - uses: goto-bus-stop/setup-zig@v2 |
| 194 | + with: |
| 195 | + zig-version: 0.14.1 |
201 | 196 | - uses: actions/setup-go@v4 |
202 | 197 | with: |
203 | | - go-version: '1.23' |
204 | | - cache-dependency-path: "**/go.sum" # To suppress warning: https://github.com/actions/setup-go/issues/427 |
| 198 | + go-version: "1.23" |
| 199 | + cache-dependency-path: "**/go.sum" # To suppress warning: https://github.com/actions/setup-go/issues/427 |
205 | 200 | - uses: acifani/setup-tinygo@v2 |
206 | 201 | with: |
207 | | - tinygo-version: '0.37.0' |
| 202 | + tinygo-version: "0.37.0" |
208 | 203 | - uses: actions/setup-node@v3 |
209 | 204 | with: |
210 | | - node-version: '22.x' |
| 205 | + node-version: "22.x" |
211 | 206 | - name: Install Grain |
212 | 207 | run: | |
213 | 208 | wget https://github.com/grain-lang/grain/releases/download/grain-v0.6.6/grain-linux-x64 |
|
0 commit comments