diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 49f04ee..b8edbd2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -34,7 +34,7 @@ jobs: run: cargo doc --all --no-deps - name: Upload html - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: rustdoc path: ./target/doc @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download rustdoc - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: rustdoc path: . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24a3ebd..c784c08 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: echo "NEW_VERSION=$(cargo metadata --no-deps --format-version=1 | jq -r '.packages[0].version')" >> $GITHUB_ENV - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: title: "Start developing ${{ env.NEW_VERSION }}" branch: "rust-version-update/${{ env.NEW_VERSION }}"