Skip to content

Commit 679b323

Browse files
Bump the actions group with 2 updates (#23)
Bumps the actions 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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0d12237 commit 679b323

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
installer -verbose -pkginfo -pkg ./${PKG_INSTALLER_NAME}
6969
installer -verbose -dominfo -pkg ./${PKG_INSTALLER_NAME}
7070
installer -verbose -volinfo -pkg ./${PKG_INSTALLER_NAME}
71-
- uses: actions/upload-artifact@v5
71+
- uses: actions/upload-artifact@v6
7272
with:
7373
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
7474
path: ${{ env.PROJECT_NAME }}-*.*
@@ -94,7 +94,7 @@ jobs:
9494
- run: ./tools/run_constructor.sh
9595
timeout-minutes: 20
9696
- run: ./tools/calculate_installer_hash.sh
97-
- uses: actions/upload-artifact@v5
97+
- uses: actions/upload-artifact@v6
9898
with:
9999
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
100100
path: ${{ env.PROJECT_NAME }}-*.*
@@ -122,7 +122,7 @@ jobs:
122122
- run: ./tools/run_constructor.sh
123123
timeout-minutes: 20
124124
- run: ./tools/calculate_installer_hash.sh
125-
- uses: actions/upload-artifact@v5
125+
- uses: actions/upload-artifact@v6
126126
with:
127127
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
128128
path: ${{ env.PROJECT_NAME }}-*.*
@@ -149,7 +149,7 @@ jobs:
149149
python-version: "3.12"
150150
if: ${{ matrix.os == 'macos-14' }}
151151
- run: ./tools/extract_version.sh
152-
- uses: actions/download-artifact@v6
152+
- uses: actions/download-artifact@v7
153153
with:
154154
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
155155
- name: Run installer
@@ -158,7 +158,7 @@ jobs:
158158
|| ( tail -n 30 /var/log/install.log && exit 1 ) # display last log messages on error
159159
# Check the list of packages that were actually installed by the installer.
160160
- run: ./tools/export_frozen_env_def.sh
161-
- uses: actions/upload-artifact@v5
161+
- uses: actions/upload-artifact@v6
162162
with:
163163
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}-json
164164
path: ${{ env.PROJECT_NAME }}-*.env.json
@@ -187,12 +187,12 @@ jobs:
187187
steps:
188188
- uses: actions/checkout@v6
189189
- run: ./tools/extract_version.sh
190-
- uses: actions/download-artifact@v6
190+
- uses: actions/download-artifact@v7
191191
with:
192192
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
193193
- run: sh ./${PKG_INSTALLER_NAME} -b
194194
- run: ./tools/export_frozen_env_def.sh
195-
- uses: actions/upload-artifact@v5
195+
- uses: actions/upload-artifact@v6
196196
with:
197197
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}-json
198198
path: ${{ env.PROJECT_NAME }}-*.env.json
@@ -219,15 +219,15 @@ jobs:
219219
steps:
220220
- uses: actions/checkout@v6
221221
- run: ./tools/extract_version.sh
222-
- uses: actions/download-artifact@v6
222+
- uses: actions/download-artifact@v7
223223
with:
224224
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}
225225
# https://docs.anaconda.com/anaconda/install/silent-mode.html#windows
226226
- run: .\%PKG_INSTALLER_NAME% /S /InstallationType=JustMe /AddToPath=1
227227
timeout-minutes: 30
228228
shell: cmd
229229
- run: ./tools/export_frozen_env_def.sh
230-
- uses: actions/upload-artifact@v5
230+
- uses: actions/upload-artifact@v6
231231
with:
232232
name: ${{ env.PKG_INSTALLER_ARTIFACT_ID }}-json
233233
path: ${{ env.PROJECT_NAME}}-*.env.json
@@ -251,7 +251,7 @@ jobs:
251251
shell: bash -el {0}
252252
steps:
253253
# These names should correspond to PKG_INSTALLER_ARTIFACT_ID in tools/extract_version.sh
254-
- uses: actions/download-artifact@v6
254+
- uses: actions/download-artifact@v7
255255
with:
256256
pattern: ${{ env.PROJECT_NAME }}-*
257257
merge-multiple: true

0 commit comments

Comments
 (0)