From 8845fc6bd6ee691760411a187071fbd3419c48d7 Mon Sep 17 00:00:00 2001 From: Tycho Andersen Date: Tue, 13 Feb 2024 18:54:14 -0700 Subject: [PATCH] ci: bump action versions We are getting Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/setup-python@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. in our github actions logs. Let's update. Signed-off-by: Tycho Andersen --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af3b03b4fd..acdaedc26f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: python-version: [pypy-3.10, 3.9, '3.10', '3.11', '3.12'] backend: ['x11', 'wayland'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies