From a2c704de1df6eef5601cc55a92cf96bb51666372 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Mon, 17 Feb 2025 17:41:57 +0100 Subject: [PATCH] ci: update checkout action to v4 actions/checkout@v4 uses nodejs 20 as runtime instead of the deprecated nodejs 12 runtime. --- .github/workflows/main.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6d20e16..8bd1e1e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: tox_test: name: Tox test steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run Tox tests id: test uses: fedora-python/tox-github-action@main diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 819a17a..f29ec92 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python 3.9