Skip to content

Commit ff1a17b

Browse files
committed
Fix CI failures due to deprecation
1 parent 7310923 commit ff1a17b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/install_requirements/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
shell: bash
3737

3838
- name: Upload lockfiles
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: lockfiles
4242
path: lockfiles

.github/workflows/code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
pipx run build
8989
9090
- name: Upload sdist and wheel as artifacts
91-
uses: actions/upload-artifact@v3
91+
uses: actions/upload-artifact@v4
9292
with:
9393
name: dist
9494
path: dist
@@ -124,7 +124,7 @@ jobs:
124124
run: echo IMAGE_REPOSITORY=ghcr.io/$(tr '[:upper:]' '[:lower:]' <<< "${{ github.repository }}") >> $GITHUB_ENV
125125

126126
- name: Download wheel and lockfiles
127-
uses: actions/download-artifact@v3
127+
uses: actions/download-artifact@v4
128128
with:
129129
path: artifacts/
130130

@@ -177,7 +177,7 @@ jobs:
177177
HAS_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN != '' }}
178178

179179
steps:
180-
- uses: actions/download-artifact@v3
180+
- uses: actions/download-artifact@v4
181181

182182
- name: Fixup blank lockfiles
183183
# Github release artifacts can't be blank

0 commit comments

Comments
 (0)