diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2021-05-12 09:07:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 08:07:43 -0500 |
commit | 1dc7becdb43ae742bb36e0014d812188cd7d99d5 (patch) | |
tree | ec5f16b4fa8834a40b9859bb560284dbaf1b38a2 /.github | |
parent | 305fa0f2ff3c5ede6c99799a9bb8c7395ce17b4d (diff) | |
download | py-bcrypt-git-1dc7becdb43ae742bb36e0014d812188cd7d99d5.tar.gz |
Revert "Bump actions/upload-artifact from 1 to 2.2.3 (#256)" (#259)
This reverts commit 8aea90689db02b90475b0eb9a2c2ce4a3bef497b.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/wheel-builder.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml index 3e7a830..0d032e0 100644 --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -31,7 +31,7 @@ jobs: - run: mkdir bcrypt-wheelhouse - run: mv wheelhouse/bcrypt*.whl bcrypt-wheelhouse/ - - uses: actions/upload-artifact@v2.2.3 + - uses: actions/upload-artifact@v1 with: name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.CONTAINER.NAME }} -${{ matrix.PYTHON.ABI_VERSION }}" path: bcrypt-wheelhouse/ @@ -60,7 +60,7 @@ jobs: - run: mkdir bcrypt-wheelhouse - run: mv wheelhouse/bcrypt*.whl bcrypt-wheelhouse/ - - uses: actions/upload-artifact@v2.2.3 + - uses: actions/upload-artifact@v1 with: name: "bcrypt-${{ github.event.inputs.version }}-macOS-${{ matrix.PYTHON.ABI_VERSION }}" path: bcrypt-wheelhouse/ @@ -93,7 +93,7 @@ jobs: # TODO: can we setup another python and test in the same job? this would catch bad linking problems (e.g. build and test on py36, but then install py38 and see if it works - run: mkdir bcrypt-wheelhouse - run: move wheelhouse\bcrypt*.whl bcrypt-wheelhouse\ - - uses: actions/upload-artifact@v2.2.3 + - uses: actions/upload-artifact@v1 with: name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.WINDOWS }}-${{ matrix.PYTHON.ABI_VERSION }}" path: bcrypt-wheelhouse\ @@ -131,7 +131,7 @@ jobs: .venv/bin/python -c \"import bcrypt; password = b'super secret password';hashed = bcrypt.hashpw(password, bcrypt.gensalt());bcrypt.checkpw(password, hashed)\";" - run: mkdir bcrypt-wheelhouse - run: sudo mv wheelhouse/bcrypt*.whl bcrypt-wheelhouse/ - - uses: actions/upload-artifact@v2.2.3 + - uses: actions/upload-artifact@v1 with: name: "bcrypt-${{ github.event.inputs.version }}-manylinux2014-aarch64-${{ matrix.PYTHON.ABI_VERSION }}" path: bcrypt-wheelhouse/ |