Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
…97)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

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 and ed-asriyan committed Sep 4, 2024
1 parent 778ba49 commit 65480af
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: cmake -DCMAKE_BUILD_TYPE=Release -DLOTTIE_MODULE=OFF CMakeLists.txt && cmake --build . --config Release

- name: Upload executable as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ inputs.output-artifact-name }}
path: bin/lottie_to_png
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-and-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
docker rm -v $id
- name: Upload executable as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ inputs.output-artifact-name }}
path: bin/lottie_to_png
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: cmake -DCMAKE_BUILD_TYPE=Release -DLOTTIE_MODULE=OFF CMakeLists.txt && cmake --build . --config Release

- name: Upload executable as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ inputs.output-artifact-name }}
path: bin/Release/lottie_to_png.exe
2 changes: 1 addition & 1 deletion .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
version: ${{ github.ref_name }}

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: lottie-to-png.${{ matrix.file }}
path: bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
[[ "${{ matrix.case }}" == "webm" ]] && brew install ffmpeg || echo ok;
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: ${{ inputs.input-artifact-name }}
path: bin
Expand All @@ -54,7 +54,7 @@ jobs:
"
- name: Upload test results as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ inputs.output-artifact-name }}.${{ matrix.case }}
path: test-files
2 changes: 1 addition & 1 deletion .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: docker run --rm -v $(pwd)/test-files:/source --platform ${{ inputs.arch }} lottie-to-${{ matrix.image }}:${{ inputs.arch }}

- name: Upload test results as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ inputs.output-artifact-name }}.${{ matrix.image }}
path: test-files
4 changes: 2 additions & 2 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: FedericoCarboni/setup-ffmpeg@v2

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: ${{ inputs.input-artifact-name }}
path: bin
Expand All @@ -51,7 +51,7 @@ jobs:
"
- name: Upload test results as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: ${{inputs.output-artifact-name }}.${{ matrix.case }}
path: test-files

0 comments on commit 65480af

Please sign in to comment.