From 942009418bc6b267d011b0d2f0a5acb296c24628 Mon Sep 17 00:00:00 2001 From: "awf-autoware-bot[bot]" <94889083+awf-autoware-bot[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 09:12:40 +0300 Subject: [PATCH 1/4] chore: sync files (#5819) Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 48a97c13ef9..9d7c0531a45 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -74,7 +74,7 @@ repos: args: [--line-length=100] - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v19.1.5 + rev: v19.1.6 hooks: - id: clang-format types_or: [c++, c, cuda] From 11c969680702141427cdc706c9f997cd0a88edef Mon Sep 17 00:00:00 2001 From: "awf-autoware-bot[bot]" <94889083+awf-autoware-bot[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 09:14:36 +0300 Subject: [PATCH 2/4] ci(pre-commit-ansible): autoupdate (#5670) Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions --- .pre-commit-config-ansible.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config-ansible.yaml b/.pre-commit-config-ansible.yaml index 971918e470f..8ab54fe1272 100644 --- a/.pre-commit-config-ansible.yaml +++ b/.pre-commit-config-ansible.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/ansible/ansible-lint.git - rev: v24.12.2 + rev: v25.1.3 hooks: - id: ansible-lint additional_dependencies: From 05037bf50ed22a515e67d0223cf0cf4cbd9f9583 Mon Sep 17 00:00:00 2001 From: Yutaka Kondo Date: Thu, 6 Mar 2025 14:08:08 +0900 Subject: [PATCH 3/4] ci: revert "use require-label action for health-check" (#5845) Revert "ci: use require-label action for health-check (#5771)" This reverts commit c8111a0db49ba764c45432ecb86bd51700e8f0e7. --- .github/workflows/health-check.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/health-check.yaml b/.github/workflows/health-check.yaml index 987110cbcb1..c51d8a320e4 100644 --- a/.github/workflows/health-check.yaml +++ b/.github/workflows/health-check.yaml @@ -12,14 +12,14 @@ on: workflow_dispatch: jobs: - require-label: - uses: autowarefoundation/autoware-github-actions/.github/workflows/require-label.yaml@v1 + label-check: + uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v1 with: label: tag:run-health-check load-env: - needs: require-label - if: ${{ needs.require-label.outputs.result == 'true' || + needs: label-check + if: ${{ needs.label-check.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} uses: ./.github/workflows/load-env.yaml From a95f45f034e6e3824fb81a20155ab6816c87106a Mon Sep 17 00:00:00 2001 From: Amadeusz Szymko Date: Thu, 6 Mar 2025 14:10:27 +0900 Subject: [PATCH 4/4] ci(docker): remove artifacts from base CUDA image (#5830) Signed-off-by: Amadeusz Szymko --- docker/Dockerfile.base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 516870c7bb5..0fe8146e2c9 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -41,9 +41,9 @@ CMD ["/bin/bash"] FROM base AS base-cuda SHELL ["/bin/bash", "-o", "pipefail", "-c"] -# Set up CUDA runtime environment and artifacts +# Set up CUDA runtime environment # hadolint ignore=SC2002 RUN --mount=type=ssh \ - ./setup-dev-env.sh -y --module base --download-artifacts --no-cuda-drivers --runtime openadkit \ + ./setup-dev-env.sh -y --module base --no-cuda-drivers --runtime openadkit \ && pip uninstall -y ansible ansible-core \ && /autoware/cleanup_apt.sh true