diff options
| author | Andre Weissflog <floooh@gmail.com> | 2024-12-29 16:55:48 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2024-12-29 16:55:48 +0100 |
| commit | 5ff951779fad98d1aab785a669cd7b40a3b1873f (patch) | |
| tree | 3db62bff6b566011eb1936dedf07fc3edb9374e2 /.github | |
| parent | 789d97071d17cbab4e3835a0b0b8b379e98c114f (diff) | |
gh actions: switch setup-zig action to mlugg/setup-zig
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 11d908c4..45d49460 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -119,7 +119,9 @@ jobs: - uses: actions/checkout@main with: repository: floooh/sokol-zig - - uses: goto-bus-stop/setup-zig@default + - uses: mlugg/setup-zig@v1 + with: + version: master - uses: actions/download-artifact@main with: name: ignore-me-zig @@ -282,7 +284,9 @@ jobs: - uses: actions/checkout@main with: repository: kassane/sokol-d - - uses: goto-bus-stop/setup-zig@default + - uses: mlugg/setup-zig@v1 + with: + version: 0.13.0 - uses: dlang-community/setup-dlang@v1 with: compiler: ldc-master @@ -451,4 +455,4 @@ jobs: git config user.name "GH Action" git add -A git diff-index --quiet HEAD || git commit -m "updated (https://github.com/floooh/sokol/commit/${{ github.sha }})" - git push
\ No newline at end of file + git push |