Skip to content

Commit

Permalink
ci: Upgrade upload-artifact Github Action (feast-dev#3726)
Browse files Browse the repository at this point in the history
* Switch from `macos-10.15` to `macos-latest`

Signed-off-by: Felix Wang <[email protected]>

* Upgrade `actions/upload-artifact@v2` to `actions/upload-artifact@v3`

Signed-off-by: Felix Wang <[email protected]>

---------

Signed-off-by: Felix Wang <[email protected]>
Signed-off-by: Attila Toth <[email protected]>
  • Loading branch information
felixwang9817 authored and zseta committed Feb 7, 2024
1 parent 14b7eb7 commit 4eb080b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
python -m pip install build
python -m build --wheel --outdir wheelhouse/
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Build
run: |
python3 setup.py sdist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java_master_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
${{ runner.os }}-ut-maven-
- name: Test java
run: make test-java-with-coverage
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: java-coverage-report
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
${{ runner.os }}-ut-maven-
- name: Test java
run: make test-java-with-coverage
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: java-coverage-report
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
- name: Run integration tests
run: make test-java-integration
- name: Save report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: it-report
Expand Down

0 comments on commit 4eb080b

Please sign in to comment.