Skip to content

Commit ccf03e7

Browse files
committed
ci: configure actions/setup-go to find go.sum file for caching purposes
1 parent 0ac4537 commit ccf03e7

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/build-publish-python-packages.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ jobs:
6767
steps:
6868
- uses: actions/checkout@v4
6969
- uses: actions/setup-go@v5
70+
with:
71+
cache-dependency-path: "**/*.sum"
7072
- uses: actions/setup-python@v5
7173
with:
7274
python-version: "3.13"

.github/workflows/test.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- uses: actions/setup-go@v5
7474
with:
7575
go-version: "${{ matrix.go-version }}"
76+
cache-dependency-path: "**/*.sum"
7677
- uses: actions/setup-node@v4
7778

7879
# jupyterhub will when being mock started as part of running tests depend

0 commit comments

Comments
 (0)