Skip to content

Commit db8e2da

Browse files
committed
Downgrade artifact actions
Newer versions do not allow mutating an existing artfact. This breaks our build. Although we could work around this, I am inclined to wait to see if any best practices emerge when using the newer actions with pypa/cibuildwheel and pypa/gh-action-pypi-publish.
1 parent 0d81085 commit db8e2da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
CIBW_BUILD_VERBOSITY: 1
3030
MAXMINDDB_REQUIRE_EXTENSION: 1
3131

32-
- uses: actions/upload-artifact@v4
32+
- uses: actions/upload-artifact@v3
3333
with:
3434
path: ./wheelhouse/*.whl
3535

@@ -44,7 +44,7 @@ jobs:
4444
- name: Build sdist
4545
run: pipx run build --sdist
4646

47-
- uses: actions/upload-artifact@v4
47+
- uses: actions/upload-artifact@v3
4848
with:
4949
path: dist/*.tar.gz
5050

@@ -56,7 +56,7 @@ jobs:
5656
id-token: write
5757
if: github.event_name == 'release' && github.event.action == 'published'
5858
steps:
59-
- uses: actions/download-artifact@v4
59+
- uses: actions/download-artifact@v3
6060
with:
6161
name: artifact
6262
path: dist

0 commit comments

Comments
 (0)