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