Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored and AnimMouse committed Dec 21, 2023
1 parent bee0f9c commit 5b6a70e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ jobs:
echo date-time-tag=$(date +'%Y-%m-%d-%H-%M') >> $GITHUB_OUTPUT
- name: Upload FFmpeg ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffmpeg-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffmpeg.exe

- name: Upload FFprobe ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffprobe-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffprobe.exe

- name: Upload FFplay ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffplay-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffplay.exe
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
run: 7z a ffmpeg-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree.7z ffmpeg.exe ffprobe.exe ffplay.exe -mx9

- name: Upload FFmpeg archive ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffmpeg-archive-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree.7z
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-on-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ jobs:
echo date-time-tag=$(date +'%Y-%m-%d-%H-%M') >> $GITHUB_OUTPUT
- name: Upload FFmpeg ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffmpeg-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffmpeg.exe

- name: Upload FFprobe ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffprobe-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffprobe.exe

- name: Upload FFplay ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffplay-${{ steps.git-sha-date.outputs.git-sha }}-${{ steps.helper-git-sha.outputs.git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-source/ffplay.exe
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: 7z a ffmpeg-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree.7z ffmpeg.exe ffprobe.exe ffplay.exe -mx9

- name: Upload FFmpeg archive ${{ matrix.os }} nonfree
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ffmpeg-archive-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree
path: ffmpeg-${{ needs.build.outputs.git-sha }}-${{ needs.build.outputs.helper-git-sha }}-${{ matrix.os }}-nonfree.7z
Expand Down

0 comments on commit 5b6a70e

Please sign in to comment.