From 74d04e01afed23d67fbfaffbe06332cfdff84dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Br=C3=A9nainn=20Woodsend?= Date: Mon, 1 Jan 2024 17:16:08 +0000 Subject: [PATCH] Bump workflow actions versions --- .github/workflows/build-wheels.yml | 14 +++++++------- .github/workflows/test.yml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index ff18131..e0f7046 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -17,9 +17,9 @@ jobs: architecture: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v5 with: python-version: 3.9 architecture: ${{ matrix.architecture }} @@ -60,9 +60,9 @@ jobs: rm $OLD_WHEEL - name: Upload wheel(s) as build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: - name: wheels + name: wheels-${{ matrix.os }}-${{ matrix.architecture }} path: dist/*.whl - name: Test Wheel @@ -86,7 +86,7 @@ jobs: ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: crazy-max/ghaction-docker-buildx@v3.3.0 - name: Build docker image @@ -102,9 +102,9 @@ jobs: " - name: Upload wheel(s) as build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: - name: wheels + name: wheels-${{ matrix.base }} path: dist/*.whl - name: Install and test wheel diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cdc82a1..3528929 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,10 +29,10 @@ jobs: steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.architecture }}