From b18213b381e4981ecb2cd43afba3a50f4a77df8b Mon Sep 17 00:00:00 2001 From: Maurits van Rees Date: Thu, 12 Sep 2024 17:01:20 +0200 Subject: [PATCH] versioncheck: Use newer upload/artifact version to match download-artifact version. Version 2 is deprecated. Or rather it completely fails: https://github.com/plone/buildout.coredev/actions/runs/10829157719/job/30046098338 Let's also use a more recent Python. This is the same as on Plone 6.1. --- .github/workflows/versioncheck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/versioncheck.yml b/.github/workflows/versioncheck.yml index 207fd3916a..fe3f9362c2 100644 --- a/.github/workflows/versioncheck.yml +++ b/.github/workflows/versioncheck.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: python-version: - - "3.8" + - "3.10" runs-on: ubuntu-latest steps: @@ -41,7 +41,7 @@ jobs: run: | ./bin/versioncheck -pnNbo versions.html - name: Upload versions.html - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: versions-${{ matrix.python-version }} path: versions.html