From 0c81e0ddd29d4dcaed6cb036c40120e63f3bee9c Mon Sep 17 00:00:00 2001 From: Frederick Jansen Date: Mon, 12 Feb 2024 11:51:37 -0500 Subject: [PATCH] Update to new actions/checkout and actions/setup-python because of deprecated Node 16 --- .github/workflows/lint-test-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test-docs.yml b/.github/workflows/lint-test-docs.yml index 7b9cba8..441db34 100644 --- a/.github/workflows/lint-test-docs.yml +++ b/.github/workflows/lint-test-docs.yml @@ -10,9 +10,9 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10"] 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