Skip to content

Commit 5d122f1

Browse files
committed
Fix deprecated GitHub Actions versions
- Update actions/upload-artifact from v3 to v4 - Update codecov/codecov-action from v3 to v4 - Remove premature code signing additions - Ensure workflows use supported action versions
1 parent 73a5617 commit 5d122f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Upload coverage to Codecov (Ubuntu only)
5858
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
59-
uses: codecov/codecov-action@v3
59+
uses: codecov/codecov-action@v4
6060
with:
6161
file: ./coverage.xml
6262
flags: unittests
@@ -103,7 +103,7 @@ jobs:
103103
echo "name=lenslogic-${{ matrix.os }}-$(date +%Y%m%d)-${GITHUB_SHA::8}" >> $GITHUB_OUTPUT
104104
105105
- name: Upload artifacts
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@v4
107107
with:
108108
name: ${{ steps.artifact_name.outputs.name }}
109109
path: dist/

0 commit comments

Comments
 (0)