diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5c1b9cc..e7b891e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest name: stable / fmt steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install stable @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest name: stable / tests steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install stable @@ -41,7 +41,7 @@ jobs: matrix: toolchain: [stable, beta] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install ${{ matrix.toolchain }} @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest name: nightly / doc steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true - name: Install nightly diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f51583e..620d710 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust run: rustup update 1.67.1 --no-self-update && rustup default 1.67.1 - name: Install cargo-dist @@ -99,7 +99,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust run: rustup update 1.67.1 --no-self-update && rustup default 1.67.1 - name: Install cargo-dist @@ -131,7 +131,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: mark release as non-draft run: | gh release edit ${{ github.ref_name }} --draft=false