diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53e5cd8..789d545 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - windows-latest runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Cargo fmt run: cargo fmt --all -- --check - name: Cargo clippy @@ -29,7 +29,7 @@ jobs: - windows-latest runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@nightly - name: Generate minimal-version dependencies run: cargo -Zminimal-versions generate-lockfile @@ -40,7 +40,7 @@ jobs: generate: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Checkout submodule # Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise run: git submodule update --recursive --init --force --checkout diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 51020bb..6f1bb18 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,6 +10,6 @@ jobs: if: github.repository_owner == 'Traverse-Research' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Publish run: cargo publish --token ${{ secrets.cratesio_token }}