Skip to content

Commit dc2764f

Browse files
build(deps): bump the github-actions-dependencies group with 2 updates
Bumps the github-actions-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2c05dc1 commit dc2764f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
poetry run make clean html
3737
working-directory: docs
3838
- name: Upload documentation artifact
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v5
4040
with:
4141
name: hpcflow-documentation (${{ github.sha }})
4242
path: docs/build/html

.github/workflows/generate_test_programs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
shell: bash
6161

6262
- name: Upload `hello_world` artifact
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: hello_world_${{ runner.os }}${{ runner.os == 'Windows' && '.exe' || '' }}
6666
path: hpcflow/data/programs/hello_world/hello_world${{ runner.os == 'Windows' && '.exe' || '' }}

.github/workflows/release_testing.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: ./compress.sh hpcflow-release-test-build-${{ matrix.executable_os }}-dir onedir
8080

8181
- name: Upload compressed artifact (folder)
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: hpcflow-release-test-build-${{ matrix.executable_os }}-dir.zip
8585
path: pyinstaller/dist/onedir/hpcflow-release-test-build-${{ matrix.executable_os }}-dir.zip
@@ -118,13 +118,13 @@ jobs:
118118
run: ./make.sh hpcflow-release-test-build-linux-dir INFO onedir
119119

120120
- name: Upload executable artifact (file)
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: hpcflow-release-test-build-linux
124124
path: pyinstaller/dist/onefile/hpcflow-release-test-build-linux
125125

126126
- name: Upload executable artifact (folder)
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v5
128128
with:
129129
name: hpcflow-release-test-build-linux-dir
130130
path: pyinstaller/dist/onedir/hpcflow-release-test-build-linux-dir
@@ -139,11 +139,11 @@ jobs:
139139

140140
- run: mkdir release-artifacts
141141

142-
- uses: actions/download-artifact@v5
142+
- uses: actions/download-artifact@v6
143143
id: download_executables_I
144144
with:
145145
name: hpcflow-release-test-build-macOS-dir.zip
146-
- uses: actions/download-artifact@v5
146+
- uses: actions/download-artifact@v6
147147
id: download_executables_II
148148
with:
149149
name: hpcflow-release-test-build-win-dir.zip
@@ -163,7 +163,7 @@ jobs:
163163

164164
- run: mkdir release-artifacts
165165

166-
- uses: actions/download-artifact@v5
166+
- uses: actions/download-artifact@v6
167167
id: download_executables
168168
with:
169169
path: release-artifacts

0 commit comments

Comments
 (0)