Skip to content

Commit 91bcd21

Browse files
Upgrade ccache-action to one using Node 16 (GH-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/ (cherry picked from commit ad8e297) Co-authored-by: Michael Droettboom <[email protected]>
1 parent 93d0d9c commit 91bcd21

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
@@ -107,7 +107,7 @@ jobs:
107107
- name: Add ccache to PATH
108108
run: echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
109109
- name: Configure ccache action
110-
uses: hendrikmuhs/ccache-action@v1
110+
uses: hendrikmuhs/ccache-action@v1.2
111111
- name: Check Autoconf version 2.69 and aclocal 1.16.3
112112
run: |
113113
grep "Generated by GNU Autoconf 2.69" configure
@@ -236,7 +236,7 @@ jobs:
236236
run: |
237237
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
238238
- name: Configure ccache action
239-
uses: hendrikmuhs/ccache-action@v1
239+
uses: hendrikmuhs/ccache-action@v1.2
240240
- name: Setup directory envs for out-of-tree builds
241241
run: |
242242
echo "CPYTHON_RO_SRCDIR=$(realpath -m ${GITHUB_WORKSPACE}/../cpython-ro-srcdir)" >> $GITHUB_ENV
@@ -299,7 +299,7 @@ jobs:
299299
run: |
300300
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
301301
- name: Configure ccache action
302-
uses: hendrikmuhs/ccache-action@v1
302+
uses: hendrikmuhs/ccache-action@v1.2
303303
- name: Configure CPython
304304
run: ./configure --with-pydebug --with-openssl=$OPENSSL_DIR
305305
- name: Build CPython
@@ -343,7 +343,7 @@ jobs:
343343
run: |
344344
echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV
345345
- name: Configure ccache action
346-
uses: hendrikmuhs/ccache-action@v1
346+
uses: hendrikmuhs/ccache-action@v1.2
347347
- name: Configure CPython
348348
run: ./configure --with-address-sanitizer --without-pymalloc
349349
- name: Build CPython

0 commit comments

Comments
 (0)