Skip to content

Commit 2bd56b9

Browse files
fix upload- and download-artifact deprecation (#84)
Co-authored-by: Vanessa Stoiber <[email protected]>
1 parent 84cdb80 commit 2bd56b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/build-node-python/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ runs:
129129
env:
130130
GITHUB_TOKEN: ${{ inputs.github_ro_token }}
131131
shell: bash
132-
- uses: actions/download-artifact@v3
132+
- uses: actions/download-artifact@v4
133133
# TODO: Remove the variable whenever we can ensure that build-node was called before
134134
if: inputs.enable_node == 'true' && inputs.download_yarn_lock == 'true'
135135
with:
@@ -240,12 +240,12 @@ runs:
240240
# This path is the global yarn cache, because for some reason the local .yarn/cache is not used. Maybe we need to set the cacheFolder, enableGlobalCache, ... options differently? @see https://yarnpkg.com/configuration/yarnrc#cacheFolder
241241
path: ~/.yarn/berry/cache/
242242
key: yarn-download-cache-${{ hashFiles('package.json') }}
243-
- uses: actions/upload-artifact@v3
243+
- uses: actions/upload-artifact@v4
244244
if: inputs.enable_node == 'true' && inputs.upload_yarn_lock == 'true'
245245
with:
246246
name: node-yarn-lock
247247
path: ./yarn.lock
248-
- uses: actions/upload-artifact@v3
248+
- uses: actions/upload-artifact@v4
249249
if: inputs.enable_node == 'true' && inputs.run_node_bundle == 'true'
250250
with:
251251
name: node-bundle

0 commit comments

Comments
 (0)