From 60f4048d6c33f414979169c660ce3bad69a395a6 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Sun, 11 Feb 2024 20:26:42 +0000 Subject: [PATCH] CI: Upgrade to Python 3.12 --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/npm.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a68a87b6..3ba6e1a8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,12 +91,12 @@ jobs: run: apk add build-base git python3 font-noto --update-cache - name: Dependencies (Python 3.11 - macOS, Windows) if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows') - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: "3.12" - name: Dependencies (Node.js) if: "!contains(matrix.platform, 'linuxmusl')" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.nodejs_version }} architecture: ${{ matrix.nodejs_arch }} @@ -176,7 +176,7 @@ jobs: - name: Dependencies run: apt-get update && apt-get install -y pkg-config - name: Dependencies (Node.js) - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20" - name: Install diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 2905c7aed..7bd150ef5 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -84,7 +84,7 @@ jobs: steps: - name: Install Node.js if: ${{ matrix.runtime == 'node' }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 - name: Install pnpm