Skip to content

Commit f426c18

Browse files
build(deps): bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4668366 commit f426c18

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
--outdir dist/
6868
.
6969
70-
- uses: actions/upload-artifact@v5
70+
- uses: actions/upload-artifact@v6
7171
with:
7272
name: python_wheel
7373
path: dist/*
@@ -98,7 +98,7 @@ jobs:
9898
- name: Generates Executable
9999
run: python -O ./builder/pyinstaller_build_macos.py
100100

101-
- uses: actions/upload-artifact@v5
101+
- uses: actions/upload-artifact@v6
102102
with:
103103
name: macos_executable
104104
path: dist/*
@@ -129,7 +129,7 @@ jobs:
129129
- name: Generates Executable
130130
run: python -O ./builder/pyinstaller_build_ubuntu.py
131131

132-
- uses: actions/upload-artifact@v5
132+
- uses: actions/upload-artifact@v6
133133
with:
134134
name: ubuntu_executable
135135
path: dist/*
@@ -165,7 +165,7 @@ jobs:
165165
run: python -O .\builder\pyinstaller_build_windows.py
166166

167167
- name: Save it as artifact
168-
uses: actions/upload-artifact@v5
168+
uses: actions/upload-artifact@v6
169169
with:
170170
name: windows_executable
171171
path: dist/*

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
run: sphinx-build -b html -j auto -d docs/_build/cache -q docs docs/_build/html
9999

100100
- name: Save build doc as artifact
101-
uses: actions/upload-artifact@v5
101+
uses: actions/upload-artifact@v6
102102
with:
103103
name: documentation
104104
path: docs/_build/html/*

0 commit comments

Comments
 (0)