Skip to content

Commit 8911dd8

Browse files
committed
Merge branch 'develop' of https://github.com/jbherdman/pool into develop
2 parents 00a23b8 + 8a22335 commit 8911dd8

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,20 +131,23 @@ jobs:
131131
fi
132132
git config --global pack.threads 0
133133
134-
- uses: actions/checkout@v2
134+
- uses: actions/checkout@v3
135135
with:
136136
# For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary'
137137
fetch-depth: ${{ matrix.coverage && '0' || '1' }}
138138

139139
- name: Cache ccache
140-
uses: actions/cache@v2
140+
uses: actions/cache@v3
141141
if: env.B2_USE_CCACHE
142142
with:
143143
path: ~/.ccache
144-
key: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}
144+
key: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}-${{github.sha}}
145+
restore-keys: |
146+
${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}-
147+
${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}
145148
146149
- name: Fetch Boost.CI
147-
uses: actions/checkout@v2
150+
uses: actions/checkout@v3
148151
with:
149152
repository: boostorg/boost-ci
150153
ref: master

0 commit comments

Comments
 (0)