From 349d3c9b7c803231fe19d97de137d40b5ec4f2ab Mon Sep 17 00:00:00 2001 From: Sean Kavanagh Date: Tue, 30 Jan 2024 19:20:37 +0000 Subject: [PATCH] Update `setup-python` and `checkout` actions on `release.yml` to fix handling of `python=3.10` (previous auto release failed because of this) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07fef90..f5196ca 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,9 @@ jobs: # only run when tests have passed (or manually triggered) steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 with: python-version: 3.10