From f1d27d68508576713d3cb65efefa346fa8b3f887 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:43:21 +0000 Subject: [PATCH 1/3] chore(deps) Update KyleMayes/install-llvm-action action to v2 | datasource | package | from | to | | ----------- | ----------------------------- | ---- | -- | | github-tags | KyleMayes/install-llvm-action | v1 | v2 | --- .github/workflows/package.yml | 2 +- .github/workflows/tests.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index ca9fd126..2e1a1a16 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -27,7 +27,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install LLVM - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "15" env: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61153140..54007b0e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install LLVM - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "15" @@ -51,7 +51,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install LLVM - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "15" @@ -103,7 +103,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install LLVM - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "15" - name: Install valgrind From b1b86937b5926e52c3e9adee3ce97c99f3f57324 Mon Sep 17 00:00:00 2001 From: Kevin Traini Date: Mon, 1 Apr 2024 13:46:11 +0200 Subject: [PATCH 2/3] chore(deps): Update version in DEPENDENCIES.md --- DEPENDENCIES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index cacf5fc2..665d1c6a 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -28,7 +28,7 @@ Here are listed all external dependencies used in this project. | Codacy coverage report | https://github.com/marketplace/actions/codacy-coverage-reporter | ![v1](https://img.shields.io/badge/v1-green) | | Tar action | https://github.com/marketplace/actions/tar-action | ![v1.1.3](https://img.shields.io/badge/v1.1.3-green) | | Upload to release | https://github.com/marketplace/actions/upload-to-release | ![v0.1.1](https://img.shields.io/badge/v0.1.1-green) | -| Install LLVM | https://github.com/marketplace/actions/install-llvm-and-clang | ![v1](https://img.shields.io/badge/v1-green) | +| Install LLVM | https://github.com/marketplace/actions/install-llvm-and-clang | ![v2](https://img.shields.io/badge/v2-green) | | CodeQL | https://github.com/github/codeql-action | ![v3](https://img.shields.io/badge/v3-green) | | CppCheck | https://github.com/marketplace/actions/cppcheck-action | ![v3.0](https://img.shields.io/badge/v3.0-green) | | Upload artifact | https://github.com/marketplace/actions/upload-a-build-artifact | ![v4](https://img.shields.io/badge/v4-green) | From cfc07d593af17c9be302d8b1566101f15a16a2f8 Mon Sep 17 00:00:00 2001 From: Kevin Traini Date: Mon, 1 Apr 2024 13:47:22 +0200 Subject: [PATCH 3/3] fix: Add missing colon in renovate config --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index e287b59f..6439466a 100644 --- a/renovate.json +++ b/renovate.json @@ -4,5 +4,5 @@ "labels": ["dependencies"], "baseBranches": ["master"], "commitBodyTable": true, - "commitMessagePrefix": "chore(deps)" + "commitMessagePrefix": "chore(deps):" }