Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 2.pre.preview to 3.1.3
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.pre.preview to 3.1.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/commits/v3.1.3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 14, 2023
1 parent f8aec93 commit 97cf639
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile_nuttx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: ccache -s

- name: Upload px4 package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: px4_package_${{matrix.config}}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mavros_mission_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: gdb build/px4_sitl_default/bin/px4 px4.core -ex "thread apply all bt" -ex "quit"
- name: Upload px4 coredump
if: failure()
uses: actions/upload-artifact@v2-preview
uses: actions/upload-artifact@v3.1.3
with:
name: coredump
path: px4.core
Expand All @@ -101,21 +101,21 @@ jobs:

- name: Upload px4 binary
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: binary
path: build/px4_sitl_default/bin/px4

- name: Store PX4 log
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: px4_log
path: ~/.ros/log/*/*.ulg

- name: Store ROS log
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: ros_log
path: ~/.ros/**/rostest-*.log
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mavros_offboard_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: gdb build/px4_sitl_default/bin/px4 px4.core -ex "thread apply all bt" -ex "quit"
- name: Upload px4 coredump
if: failure()
uses: actions/upload-artifact@v2-preview
uses: actions/upload-artifact@v3.1.3
with:
name: coredump
path: px4.core
Expand All @@ -96,21 +96,21 @@ jobs:

- name: Upload px4 binary
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: binary
path: build/px4_sitl_default/bin/px4

- name: Store PX4 log
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: px4_log
path: ~/.ros/log/*/*.ulg

- name: Store ROS log
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.3
with:
name: ros_log
path: ~/.ros/**/rostest-*.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sitl_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ jobs:
run: gdb build/px4_sitl_default/bin/px4 px4.core -ex "thread apply all bt" -ex "quit"
- name: Upload px4 coredump
if: failure()
uses: actions/upload-artifact@v2-preview
uses: actions/upload-artifact@v3.1.3
with:
name: coredump
path: px4.core

- name: Upload px4 binary
if: failure()
uses: actions/upload-artifact@v2-preview
uses: actions/upload-artifact@v3.1.3
with:
name: binary
path: build/px4_sitl_default/bin/px4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tiiuae-coverity-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run:
cat cov-analyze-result.txt >> $GITHUB_STEP_SUMMARY
- name: Upload coverity scan results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.3
with:
name: coverity-html-report-${{ github.event.repository.name }}
path: coverity-output
2 changes: 1 addition & 1 deletion .github/workflows/tiiuae-pixhawk-and-saluki-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
./build.sh ../bin/ ${{ inputs.product }}
ls ../bin
- name: Upload ${{ inputs.product }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.3
with:
name: pixhawk
path: bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tiiuae-pixhawk-and-saluki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
./build.sh ../bin/ px4fwupdater
ls ../bin
- name: Upload px4fwupdater to tmp storage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.3
with:
name: pixhawk
path: bin/
Expand Down

0 comments on commit 97cf639

Please sign in to comment.