You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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
# 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
Copy file name to clipboardExpand all lines: .github/workflows/build-docker-artifacts.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -243,6 +243,7 @@ jobs:
243
243
# Disable provenance as it creates weird multi-arch images: https://github.com/docker/build-push-action/issues/755
244
244
provenance: false
245
245
# Disable the cache to avoid outdated (base) images
246
+
# TODO: are we sure we want this? We might benefit a lot from caching! But also, our base images like datavisyn/base/python:main are updated frequently and have no version tag...
246
247
no-cache: true
247
248
build-args: |
248
249
GIT_BRANCH=${{ steps.get-branch.outputs.branch }}
@@ -276,6 +277,7 @@ jobs:
276
277
277
278
- name: Determine trivy scan severity levels
278
279
id: configure_trivy
280
+
shell: bash
279
281
run: |
280
282
if [[ "${{ github.event.inputs.scan_high_severity }}" == "false" ]] || \
0 commit comments