diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-09-18 20:38:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-18 20:38:35 -0700 |
| commit | 7f1bb99a0323a0665612f9f2954b7287401731c0 (patch) | |
| tree | 24587a8febd775ec795a4a89d5328c61e149c487 /.github | |
| parent | c0ff59c272109d863beefcef0f796f758eaa8c84 (diff) | |
build(deps): bump actions/upload-artifact from 2 to 3 (#8304)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2...v3)
---
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>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/release-candidate.yml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index cff15fc69..86f719cf6 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -36,7 +36,7 @@ jobs: cp $HOME/.cabal/bin/pandoc ${ARTIFACTS}/ cp COPYRIGHT ${ARTIFACTS}/ echo "Built from ${GITHUB_SHA}" > ${ARTIFACTS}/README.nightly.txt - - uses: actions/upload-artifact@master + - uses: actions/upload-artifact@v3 with: name: nightly-linux path: nightly-linux @@ -62,7 +62,7 @@ jobs: copy COPYRIGHT %ARTIFACTS% ren %ARTIFACTS%\COPYRIGHT COPYRIGHT.txt echo Built from %GITHUB_SHA% > %ARTIFACTS%\README.nightly.txt - - uses: actions/upload-artifact@master + - uses: actions/upload-artifact@v3 with: name: nightly-windows path: nightly-windows @@ -86,7 +86,7 @@ jobs: mv ${ARTIFACTS}/pandoc ${ARTIFACTS}/pandoc cp COPYRIGHT ${ARTIFACTS}/ echo "Built from ${GITHUB_SHA}" > ${ARTIFACTS}/README.nightly.txt - - uses: actions/upload-artifact@master + - uses: actions/upload-artifact@v3 with: name: nightly-macos path: nightly-macos diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 859c937b0..d6636a084 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -20,7 +20,7 @@ jobs: mkdir linux-release-candidate cp linux/artifacts/*.deb linux-release-candidate/ cp linux/artifacts/*.tar.gz linux-release-candidate/ - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: linux-release-candidate path: linux-release-candidate @@ -81,7 +81,7 @@ jobs: copy windows\pandoc-%VERSION%-${{ matrix.versions.osarch }}-UNSIGNED.msi windows-release-candidate copy windows\pandoc-%VERSION%-${{ matrix.versions.osarch }}.zip windows-release-candidate copy windows\Makefile windows-release-candidate - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: windows-release-candidate path: windows-release-candidate @@ -122,7 +122,7 @@ jobs: cp macos/Makefile ${ARTIFACTS}/ echo ${VERSION} > ${ARTIFACTS}/version.txt - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: macos-release-candidate path: macos-release-candidate |
