Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#41)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 7, 2024
1 parent 748e80c commit da6c739
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down Expand Up @@ -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/*

0 comments on commit da6c739

Please sign in to comment.