From f86be3fe7e8133139ecd35399c12d6d5ccac7442 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Fri, 14 Oct 2022 03:08:39 +0900 Subject: [PATCH] ci: Use actions/setup-python@v4 This commit updates the CI workflows to use the latest "setup-python" action v4, which is based on Node.js 16. Note that Node.js 12-based actions are now deprecated by GitHub and may stop working in the near future. Signed-off-by: Stephanos Ioannidis --- .github/workflows/devicetree_checks.yml | 2 +- .github/workflows/twister_tests.yml | 2 +- .github/workflows/west_cmds.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/devicetree_checks.yml b/.github/workflows/devicetree_checks.yml index da640bce586..daed785b60a 100644 --- a/.github/workflows/devicetree_checks.yml +++ b/.github/workflows/devicetree_checks.yml @@ -31,7 +31,7 @@ jobs: - name: checkout uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: cache-pip-linux diff --git a/.github/workflows/twister_tests.yml b/.github/workflows/twister_tests.yml index 2f37b615e51..8b93977d12b 100644 --- a/.github/workflows/twister_tests.yml +++ b/.github/workflows/twister_tests.yml @@ -29,7 +29,7 @@ jobs: - name: checkout uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: cache-pip-linux diff --git a/.github/workflows/west_cmds.yml b/.github/workflows/west_cmds.yml index 6a6f395f1c3..a80604bde46 100644 --- a/.github/workflows/west_cmds.yml +++ b/.github/workflows/west_cmds.yml @@ -32,7 +32,7 @@ jobs: - name: checkout uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: cache-pip-linux