diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ed09beb..2bf36a2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: - - uses: taiki-e/github-actions/checkout@main + - uses: taiki-e/checkout-action@v1 # cross attempts to install rust-src when Cargo.toml is available even if `cross --version` - run: rm Cargo.toml - name: Generate tool list @@ -130,7 +130,7 @@ jobs: run: apk --no-cache add bash cargo shell: sh if: startsWith(matrix.container, 'alpine') - - uses: taiki-e/github-actions/checkout@main + - uses: taiki-e/checkout-action@v1 # cross attempts to install rust-src when Cargo.toml is available even if `cross --version` - run: rm Cargo.toml - name: Generate tool list @@ -145,7 +145,7 @@ jobs: timeout-minutes: 60 container: ubuntu:22.04 steps: - - uses: taiki-e/github-actions/checkout@main + - uses: taiki-e/checkout-action@v1 - name: Generate tool list id: tool-list run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}" @@ -160,7 +160,7 @@ jobs: contents: write pull-requests: write steps: - - uses: taiki-e/github-actions/checkout@main + - uses: taiki-e/checkout-action@v1 - name: Install Rust run: rustup toolchain add nightly --no-self-update && rustup default nightly - run: tools/manifest.sh diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9d59aed..331087b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: permissions: contents: write steps: - - uses: taiki-e/github-actions/checkout@main + - uses: taiki-e/checkout-action@v1 - uses: taiki-e/create-gh-release-action@v1 with: changelog: CHANGELOG.md