From 1a36551bd4dcfd673cdb9688905ed025d913756a Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 4 Mar 2022 20:57:39 +1100 Subject: [PATCH] Updated actions/* to v3 --- .github/workflows/lint.yml | 4 ++-- .github/workflows/wheels-build.yml | 6 +++--- .github/workflows/wheels.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e6e7b5914..fe7a2c296 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,6 +9,6 @@ jobs: name: Lint steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 - uses: pre-commit/action@v2.0.3 diff --git a/.github/workflows/wheels-build.yml b/.github/workflows/wheels-build.yml index 444ac9dc6..6858dd0ad 100644 --- a/.github/workflows/wheels-build.yml +++ b/.github/workflows/wheels-build.yml @@ -57,15 +57,15 @@ jobs: TRAVIS_OS_NAME: ${{ matrix.os-name }} MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: 3.9 - name: Build Wheel run: .github/workflows/build.sh - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: ${{ inputs.artifacts-name }} path: wheelhouse/*.whl diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 848422216..70f7aef4b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -22,7 +22,7 @@ jobs: if: "startsWith(github.ref, 'refs/tags/')" needs: build steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: wheels - name: Upload Release