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
Copy file name to clipboardExpand all lines: .github/actions/build-node/action.yml
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -29,10 +29,6 @@ inputs:
29
29
run_webpack:
30
30
default: false
31
31
required: false
32
-
disable_cache:
33
-
description: "Set to true to disable caching"
34
-
default: false
35
-
required: false
36
32
37
33
runs:
38
34
using: "composite"
@@ -63,7 +59,6 @@ runs:
63
59
name: node-yarn-lock
64
60
# Enable yarn download cache, @see https://github.com/actions/cache/tree/main/save#always-save-cache and https://github.com/actions/setup-node/issues/325
65
61
- name: Restore yarn cache
66
-
if: inputs.disable_cache == 'false'
67
62
uses: actions/cache/restore@v3
68
63
with:
69
64
# 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-node.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,12 +37,12 @@ jobs:
37
37
runs-on: ubuntu-22.04
38
38
steps:
39
39
# checkout specific source repository
40
-
- uses: actions/checkout@v4
40
+
- uses: actions/checkout@v3
41
41
with:
42
42
ref: ${{ inputs.branch }}
43
43
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # has to set because otherwise it will not work
44
44
# checkout this workflow repository to get actions
0 commit comments