Skip to content

Commit ad8e297

Browse files
authored
Upgrade ccache-action to one using Node 16 (#98166)
Github Actions has deprecated the use of Node 12, and will be turning it off by summer 2023. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
1 parent 454a6d6 commit ad8e297

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Add ccache to PATH
7474
run: echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
7575
- name: Configure ccache action
76-
uses: hendrikmuhs/ccache-action@v1
76+
uses: hendrikmuhs/ccache-action@v1.2
7777
- name: Check Autoconf version 2.69 and aclocal 1.16.3
7878
run: |
7979
grep "Generated by GNU Autoconf 2.69" configure
@@ -202,7 +202,7 @@ jobs:
202202
run: |
203203
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
204204
- name: Configure ccache action
205-
uses: hendrikmuhs/ccache-action@v1
205+
uses: hendrikmuhs/ccache-action@v1.2
206206
- name: Setup directory envs for out-of-tree builds
207207
run: |
208208
echo "CPYTHON_RO_SRCDIR=$(realpath -m ${GITHUB_WORKSPACE}/../cpython-ro-srcdir)" >> $GITHUB_ENV
@@ -265,7 +265,7 @@ jobs:
265265
run: |
266266
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
267267
- name: Configure ccache action
268-
uses: hendrikmuhs/ccache-action@v1
268+
uses: hendrikmuhs/ccache-action@v1.2
269269
- name: Configure CPython
270270
run: ./configure --with-pydebug --with-openssl=$OPENSSL_DIR
271271
- name: Build CPython
@@ -309,7 +309,7 @@ jobs:
309309
run: |
310310
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
311311
- name: Configure ccache action
312-
uses: hendrikmuhs/ccache-action@v1
312+
uses: hendrikmuhs/ccache-action@v1.2
313313
- name: Configure CPython
314314
run: ./configure --with-address-sanitizer --without-pymalloc
315315
- name: Build CPython

0 commit comments

Comments
 (0)