Skip to content

Commit 4ef835b

Browse files
committed
ci: fix GitHub Actions variable replacement syntax
It was wrong in a few places. Probably affected caching of deps?
1 parent 25a462d commit 4ef835b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
path: |
1616
~/.m2/repository
1717
~/.gitlibs
18-
key: $${ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
19-
restore-keys: $${ runner.os }}-cljdeps-
18+
key: ${{ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
19+
restore-keys: ${{ runner.os }}-cljdeps-
2020

2121
- name: Setup Java
2222
uses: actions/setup-java@v3

.github/workflows/native-image-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
path: |
2828
~/.m2/repository
2929
~/.gitlibs
30-
key: $${ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
31-
restore-keys: $${ runner.os }}-cljdeps-
30+
key: ${{ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
31+
restore-keys: ${{ runner.os }}-cljdeps-
3232

3333
#
3434
# Install GraalVM

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
path: |
2727
~/.m2/repository
2828
~/.gitlibs
29-
key: $${ runner.os }}-cljdeps-release-${{ hashFiles('deps.edn') }}
30-
restore-keys: $${ runner.os }}-cljdeps-release-
29+
key: ${{ runner.os }}-cljdeps-release-${{ hashFiles('deps.edn') }}
30+
restore-keys: ${{ runner.os }}-cljdeps-release-
3131

3232
- name: Setup Java
3333
uses: actions/setup-java@v3

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
path: |
3333
~/.m2/repository
3434
~/.gitlibs
35-
key: $${ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
36-
restore-keys: $${ runner.os }}-cljdeps-
35+
key: ${{ runner.os }}-cljdeps-${{ hashFiles('deps.edn') }}
36+
restore-keys: ${{ runner.os }}-cljdeps-
3737

3838
- name: Node modules cache
3939
uses: actions/cache@v3

0 commit comments

Comments
 (0)