Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3.1.2 to 4.3.6
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 4.3.6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3.1.2...v4.3.6)

---
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 Aug 20, 2024
1 parent 413e6b6 commit 0d0327d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
echo "ARTIFACT_NAME=arelle-${{ matrix.distro }}.tgz" >> $GITHUB_ENV
echo "BUILD_ARTIFACT_PATH=$(echo dist/*.tgz)" >> $GITHUB_ENV
- name: Upload build artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: ${{ matrix.distro }} distribution
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
hdiutil detach "${DEVICE}"
hdiutil convert dist_dmg/arelle_tmp.dmg -format UDZO -imagekey zlib-level=9 -o ${{ env.DMG_BUILD_ARTIFACT_PATH }}
- name: Upload build artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: macos distribution
if-no-files-found: error
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,14 @@ jobs:
run: 7z a -tzip ..\..\${{ steps.define-artifact-names.outputs.zip_build_artifact_path }} *
- name: Upload installer artifact
id: upload-installer-artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: ${{ steps.define-artifact-names.outputs.exe_uploaded_artifact_name }}
if-no-files-found: error
path: ${{ steps.define-artifact-names.outputs.exe_build_artifact_path }}
- name: Upload zip artifact
id: upload-zip-artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: ${{ steps.define-artifact-names.outputs.zip_uploaded_artifact_name }}
if-no-files-found: error
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
pip install build
python -m build
- name: Upload tar artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: arelle.tar.gz
if-no-files-found: error
path: dist/*.tar.gz
- name: Upload wheel artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: arelle.whl
if-no-files-found: error
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,21 +126,21 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: logs-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.txt'
- name: Upload screenshots
# screenshots are only taken on test failure
if: failure()
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: screenshots-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.png'
- name: Upload videos
# videos are only saved on test failure
if: failure()
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.6
with:
name: videos-${{ matrix.build-type }}
path: 'c:\temp\testsmedia\*.avi'

0 comments on commit 0d0327d

Please sign in to comment.