diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa519ed..beb2e29 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@v3 + - uses: actions/checkout@v4 - name: Install Rust run: rustup update 1.67.1 --no-self-update && rustup default 1.67.1 - name: Install cargo-dist @@ -102,7 +102,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Rust run: rustup update 1.67.1 --no-self-update && rustup default 1.67.1 - name: Install cargo-dist @@ -134,7 +134,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: mark release as non-draft run: | gh release edit ${{ github.ref_name }} --draft=false diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 090bb7c..33ec54f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: cargo build --verbose - name: Run tests