From b4e312c8b134feadf1829c0bf316061b45036f68 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 16 Sep 2024 17:31:20 -0400 Subject: [PATCH 1/2] ci(native): add ref to setup-pixi To address: > Error > the `uses' attribute must be a path, a Docker image, or owner/repo@ref --- .github/workflows/native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index b75752b78..181cf5299 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: prefix-dev/setup-pixi + - uses: prefix-dev/setup-pixi@v0.8.1 - name: Build and Test ITK-Wasm run: | From be650a09a49104f9287be71590efacdecbae8d3c Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 16 Sep 2024 18:12:09 -0400 Subject: [PATCH 2/2] ci(native): add checkout step --- .github/workflows/native.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 181cf5299..ff56d559a 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -15,6 +15,8 @@ jobs: runs-on: ubuntu-22.04 steps: + - uses: actions/checkout@v4 + - uses: prefix-dev/setup-pixi@v0.8.1 - name: Build and Test ITK-Wasm