File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments