From da6c739ae037286cc4c3ef27b859c0bbbc45e155 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 22:37:12 +0200 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 (#41) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6015643..f4637dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: tag: ${{ env.VERSION }} overwrite: true - name: Upload Binary File to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }} path: target/${{ matrix.target }}/release/mdbook-pdf @@ -97,7 +97,7 @@ jobs: tag: ${{ env.VERSION }} overwrite: true - name: Upload Binary File to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }} path: target/${{ matrix.target }}/release/mdbook-pdf.exe @@ -138,7 +138,7 @@ jobs: tag: ${{ env.VERSION }} overwrite: true - name: Upload Binary File to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: mdbook-pdf-${{ env.VERSION }}-${{ matrix.target }} path: target/${{ matrix.target }}/release/mdbook-pdf diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aee130e..62aa84f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -230,12 +230,12 @@ jobs: fi mdbook build - name: Upload PDF File to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}_${{ matrix.name }}_PDF path: ${{ matrix.dir }}/book/pdf-outline/*.pdf - name: Upload Build HTML to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}_${{ matrix.name }}_HTML path: ${{ matrix.dir }}/book/html/* @@ -347,12 +347,12 @@ jobs: echo "[output.pdf-outline]" >> book.toml mdbook build - name: Upload PDF File to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}_${{ matrix.name }}_PDF path: ${{ matrix.dir }}/book/pdf-outline/*.pdf - name: Upload Build HTML to Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}_${{ matrix.name }}_HTML path: ${{ matrix.dir }}/book/html/*