Skip to content

Commit

Permalink
update upload action (#67)
Browse files Browse the repository at this point in the history
* update upload action

- install conan under root user

* update other actions

* update last action
  • Loading branch information
MP91 authored Jun 24, 2024
1 parent d250fd6 commit 5ddac96
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-base-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
uses: pre-commit/[email protected]

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
version: v0.9.0

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
sed -i -e 's/PACKAGE-MANAGER/PACKAGE_MANAGER/g' SBOM/SPDX/*.spdx.json
- name: Upload SBOM as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: SBOM
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
java -jar dash.jar -project automotive.velocitas -review -token ${{ secrets.GITLAB_API_TOKEN }} -summary DEPENDENCIES clearlydefined.input 2> output.log
- name: Upload dash input/output as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: "dash-artifacts"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Wait for build-base-images workflow to succeed
uses: fountainhead/action-wait-for-check@v1.1.0
uses: fountainhead/action-wait-for-check@v1.2.0
with:
checkName: Building image (cpp)
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
with:
string: ${{ github.repository }}

- uses: docker/setup-buildx-action@v2
- uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true
Expand Down
3 changes: 3 additions & 0 deletions Dockerfiles/cpp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ RUN ./install-python.sh && \
./install-velocitas-cli.sh ${TARGETARCH} && \
./install-kanto.sh ${TARGETARCH}

# Install conan as root user
RUN sudo pip3 install conan==1.63.0

USER 4000

ADD --chown=4000 https://raw.githubusercontent.com/eclipse-velocitas/vehicle-app-cpp-sdk/$SDK_TAG/requirements.txt ./requirements/requirements.txt
Expand Down
8 changes: 4 additions & 4 deletions NOTICE-3RD-PARTY-CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
|:-----------|:-------:|--------:|
|actions/checkout|v4|MIT License|
|actions/setup-java|v3.13.0|MIT License|
|actions/upload-artifact|v3|MIT License|
|actions/upload-artifact|v4|MIT License|
|ASzc/change-string-case-action|v6|ISC License|
|devcontainers/ci|v0.3|MIT License|
|docker/login-action|v3|Apache License 2.0|
|docker/setup-buildx-action|v2|Apache License 2.0|
|docker/setup-qemu-action|v2|Apache License 2.0|
|docker/setup-buildx-action|v3|Apache License 2.0|
|docker/setup-qemu-action|v3|Apache License 2.0|
|EndBug/add-and-commit|v9|MIT License|
|fountainhead/action-wait-for-check|v1.1.0|MIT License|
|fountainhead/action-wait-for-check|v1.2.0|MIT License|
|pre-commit/action|v3.0.0|MIT License|

0 comments on commit 5ddac96

Please sign in to comment.