File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 16
16
jobs :
17
17
release-comment-issues :
18
18
runs-on : ubuntu-20.04
19
- name : ' Notify issues that are included in a release '
19
+ name : ' Notify issues'
20
20
21
21
steps :
22
+ - name : Check out code
23
+ uses : actions/checkout@v4
24
+
25
+ - name : Compute dependency cache key
26
+ id : compute_lockfile_hash
27
+ run : node ./scripts/dependency-hash-key.js >> "$GITHUB_OUTPUT"
28
+ shell : bash
29
+
30
+ - name : Check dependency cache
31
+ uses : actions/cache/restore@v4
32
+ id : cache_dependencies
33
+ with :
34
+ path : |
35
+ ${{ github.workspace }}/node_modules
36
+ ${{ github.workspace }}/packages/*/node_modules
37
+ ${{ github.workspace }}/dev-packages/*/node_modules
38
+ ~/.cache/mongodb-binaries/
39
+ key : ${{ steps.compute_lockfile_hash.outputs.hash }}
40
+
41
+ - name : Install dependencies
42
+ if : steps.cache_dependencies.outputs.cache-hit != 'true'
43
+ run : yarn install --ignore-engines --frozen-lockfile
44
+ shell : bash
45
+
22
46
- name : Get version
23
47
id : get_version
24
48
run : echo "version=${{ github.event.inputs.version || github.event.release.tag_name || '8.32.0' }}" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments