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

update upload action #67

Merged
merged 3 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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|
Loading