Skip to content

Commit 58604d5

Browse files
committed
ci: debug: what happens when we remove the deps cache
1 parent 35b1746 commit 58604d5

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

.github/actions/fn-setup/action.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ runs:
2222
cache: true
2323
cache-hash: ${{ runner.os }}-${{ env.DENO_CACHE_SLICE_NAME }}@${{ inputs.cache-version }}
2424

25-
- name: Set up Deno dependencies cache
26-
uses: actions/cache@v3
27-
env:
28-
# Don't add more paths below, since they'll be invalidated whenever Deno deps change
29-
# Yoinked from https://github.com/actions/cache/blob/main/examples.md#linux
30-
DENO_DEPS_CACHE_PATH: |
31-
~/.deno
32-
~/.cache/deno
33-
with:
34-
path: ${{ env.DENO_DEPS_CACHE_PATH }}
35-
key: ${{ runner.os }}-${{ inputs.deno-deps-cache-slice-name }}@${{ inputs.cache-version }}-${{ hashFiles('deno.lock') }}
36-
restore-keys: |
37-
${{ runner.os }}-${{ inputs.deno-deps-cache-slice-name }}@${{ inputs.cache-version }}
25+
# - name: Set up Deno dependencies cache
26+
# uses: actions/cache@v3
27+
# env:
28+
# # Don't add more paths below, since they'll be invalidated whenever Deno deps change
29+
# # Yoinked from https://github.com/actions/cache/blob/main/examples.md#linux
30+
# DENO_DEPS_CACHE_PATH: |
31+
# ~/.deno
32+
# ~/.cache/deno
33+
# with:
34+
# path: ${{ env.DENO_DEPS_CACHE_PATH }}
35+
# key: ${{ runner.os }}-${{ inputs.deno-deps-cache-slice-name }}@${{ inputs.cache-version }}-${{ hashFiles('deno.lock') }}
36+
# restore-keys: |
37+
# ${{ runner.os }}-${{ inputs.deno-deps-cache-slice-name }}@${{ inputs.cache-version }}
3838

3939
- name: Install dependencies
4040
run: deno install

0 commit comments

Comments
 (0)