Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/download-artifact from 3 to 4 #585

Open
wants to merge 315 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

Bumps actions/download-artifact from 3 to 4.

Release notes

Sourced from actions/download-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

For more information, see the @​actions/artifact documentation.

New Contributors

Full Changelog: actions/download-artifact@v3...v4.0.0

v3.0.2

v3.0.1

Commits
  • 7a1cd32 Merge pull request #246 from actions/v4-beta
  • 8f32874 licensed cache
  • b5ff844 Merge pull request #245 from actions/robherley/v4-documentation
  • f07a0f7 Update README.md
  • 7226129 update test workflow to use different artifact names for matrix
  • ada9446 update docs and bump @​actions/artifact
  • 7eafc8b Merge pull request #244 from actions/robherley/bump-toolkit
  • 3132d12 consume latest toolkit
  • 5be1d38 Merge pull request #243 from actions/robherley/v4-beta-updates
  • 465b526 consume latest @​actions/toolkit
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

jlaitine and others added 30 commits October 26, 2023 12:48
Rename script ssrc-test-simulation.sh -> ssrc-sim-tester.sh
Support multiple drones in one simulation
Cleanup containers to stop simulation
Simulator generates new device_id value for each new gps id detected
from received hil_gps message. Generated device_id is not stored
but latter sensor_gps messages for the same gps device has device_id
value zero. This patch stores the generated device_id and use the
value in next messages.
WARN  [load_mon] usr_hrt low on stack! (96 bytes left)
Disabling interrupts is not something the user space should do. Also,
the boardctl() in hrt_absolute_time() won't work if interrupts are
disabled (where would the service call go?).
Signed-off-by: Jukka Laitinen <[email protected]>
if ssrc_config dir exists and SSRC_CONFIG env variable found
the related config.txt file is sourced.
example env variable set:
 SSRC_CONFIG=indoor
=> /ssrc_config/config_indoor.txt is used
Do not poke the tcb directly from userspace
Either exit or politely ask a process to kill itself, instead of calling
the kernel private procedure 'task_delete()'.
This prevents accidental misconfiguration via I2C if there are
multiple SPI devices on the same bus. The device may hear it's i2c address
and write some register, while there is data transfer ongoing with another
device.

Signed-off-by: Jukka Laitinen <[email protected]>
Removed, as it is not needed
This allows signinig the protected mode binary, by encapsulating the
firmware between a header (the ToC) and the signature, instead of placing
the ToC inside of the firmware itself.

The problem was that the ToC went to the kernel binary, while the
signature is appended to the user binary. The ToC needs the location of
the signature which cannot be known at the time when the kernel is linked.

For ToC integrity protection, the ToC itself is also signed and verified.
Also simplify the previous implementation. The first TOC
entry must contain the TOC; but it doesn't matter whether
it contains only the TOC or also something else

Signed-off-by: Jukka Laitinen <[email protected]>
Re-build did not re-create the ToC, which results in a bad ToC for the
px4 firmware.
The syscall lookup table contains poisoned xxenv() procedures and causes
a build error. The file is included via a massive header that includes
almost everything in /arch/risc-v/ etc (riscv_internal.h). This was
already fixed once, and, tbh, suppressing the poison error is the only
way to get this to work reliably.
Add recv_port into cmd line option
Use IRQ locking only when the atomic access is performed from IRQs
This clearly belongs to user space, only
All data should come already by HIL_SENSORS messages, so HIL_STATE_QUATERNION
should not be needed.
Add time_remaining_s field to HIL_SENSORS battery_status filling
Igor-Misic and others added 28 commits December 12, 2023 11:58
A version update is needed since the dataman is showing errors if data doesn't exist or if it is wrongly stored. This will force default data to be initialized.
tests dataman will trigger errors and run_nsh_cmd.py
 is not written to detect only when a test fails. This is properly tested with run_tests.py
…anges

This avoids the need to regularly access dataman for checking.
Avoids unnecessary dataman accesses
…dataman'

As this test is expected to contain errors.
This can happen e.g. when the item is cleared.
Instead of also when geofence/safe points updated.
This prevents reporting multiple times.
…sion is not valid, use the state from the last mission validation.
…e dataman state.

If at the last powercycle one mission was uploaded, the counter in dataman was 1. On the next powercycle the mavlink mission counter was reset to zero and on first mission upload updated to 1 again. Other modules check, if the mission was changed based on the counter, like the mission.cpp loaded the mission counter from the dataman. On a new mission, the comparison of the counters failed, because both were the same value even if the mission was completely different.
Fetch changes to enable compiler optimized memcpy et al
… generation

This manifests only with the new uORB library, which always returns 0 updates available
when data is not valid

Signed-off-by: Jukka Laitinen <[email protected]>
With the latest NuttX, for some reason printfs don't match the regexps as before (probably due to \n character in the end)

Signed-off-by: Jukka Laitinen <[email protected]>
- build custom signed px4
- package fpga binaries to px4 container
- bootloader is now included in fpga bitstream so no need to package it anymore
- build from added tag: v1.14.0-*
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.