-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from HiSPARC/dependabot/github_actions/actions…
…/download-artifact-4 Bump actions/download-artifact from 3 to 4
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
glob_root_file: true | ||
latexmk_shell_escape: true | ||
work_in_root_file_dir: true | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pdf | ||
path: "*/*.pdf" | ||
|
@@ -24,7 +24,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: pdf | ||
- uses: actions/setup-node@v4 | ||
|
@@ -37,7 +37,7 @@ jobs: | |
sudo apt-get install pdf2svg | ||
- run: | | ||
make svgs | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: svg | ||
path: "*/*.svg" | ||
|
@@ -47,7 +47,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: pdf | ||
- run: | | ||
|
@@ -57,7 +57,7 @@ jobs: | |
sudo sed -i '/disable ghostscript format types/,+6d' /etc/ImageMagick-6/policy.xml | ||
- run: | | ||
make gif | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: gif | ||
path: "*/*.gif" | ||
|
@@ -66,7 +66,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: other | ||
path: | | ||
|
@@ -79,7 +79,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/master' | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
- run: mv */index.html ./ | ||
- run: mv */*/*.* ./ | ||
- uses: peaceiris/[email protected] | ||
|