From d6409f5473e1dd0a7443d7d82d51e45177667ab0 Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 8 Apr 2025 00:06:20 +0200 Subject: [PATCH] workflow fixes - checkout@latest is not allowed, reverted back to checkout@v4 - set rust to use the stable release --- .github/workflows/release.yaml | 2 +- .github/workflows/validate.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4776c04..97352b6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: env: OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip steps: - - uses: actions/checkout@latest + - uses: actions/checkout@v4 - run: make compile ARCH=${{matrix.arch}} - name: compress binary information run: | diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 3137e9a..3f8bff7 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -20,6 +20,6 @@ jobs: - linux-x86_64 - win-x86_64 steps: - - uses: actions/checkout@latest + - uses: actions/checkout@v4 - run: make compile ARCH=${{matrix.arch}} # TODO: add linting checking here