From cd97cf5c4e729d660b262d8caba3ed659dd20bf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 05:53:44 +0000 Subject: [PATCH 1/2] Bump actions/download-artifact from 2 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/clang-tools-amd64.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clang-tools-amd64.yml b/.github/workflows/clang-tools-amd64.yml index 801572e..ef8de3d 100644 --- a/.github/workflows/clang-tools-amd64.yml +++ b/.github/workflows/clang-tools-amd64.yml @@ -155,7 +155,7 @@ jobs: needs: build steps: - name: download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: clang-tools - name: list files From 4247da02e388b89418c67a2a614463afe8e345b6 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Mon, 25 Dec 2023 06:00:10 +0000 Subject: [PATCH 2/2] ignore dependabot changes --- .github/workflows/clang-tools-amd64.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clang-tools-amd64.yml b/.github/workflows/clang-tools-amd64.yml index ef8de3d..8a9f779 100644 --- a/.github/workflows/clang-tools-amd64.yml +++ b/.github/workflows/clang-tools-amd64.yml @@ -65,6 +65,7 @@ jobs: extra-tar-args: '--exclude=${RELEASE}/clang/test/Driver/Inputs/* --exclude=${RELEASE}/libcxx/test/std/input.output/filesystems/Inputs/static_test_env/* --exclude=${RELEASE}/libclc/amdgcn-mesa3d' extra-tar-args-cfe: '--exclude=cfe-${version}.src/test/Driver/Inputs/*' runs-on: ${{ matrix.runner }} + if: ${{ github.actor != 'dependabot[bot]' }} env: COMMON_CMAKE_ARGS: '-DBUILD_SHARED_LIBS=OFF -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra"' POSIX_CMAKE_ARGS: '-DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_C_COMPILER=gcc-10' @@ -151,7 +152,8 @@ jobs: path: "${{ matrix.release }}${{ matrix.bindir }}/clang-*-${{ env.suffix }}*" retention-days: 1 draft-release: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 + if: ${{ github.actor != 'dependabot[bot]' }} needs: build steps: - name: download artifacts