From 6dee302beae5fb844dd416fcf28d76bc10c48a18 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 12:43:35 +0000 Subject: [PATCH] ci: bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 5 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 22 +++++++++++----------- .github/workflows/codeql.yml | 14 +++++++------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fe842b..6e1fe45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,26 +59,26 @@ jobs: - { name: windows-msvc, os: windows-2022 } - { name: macos-arm64, os: macos-14 } steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: path: brosoundml - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/bromath path: bromath - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brotensor path: brotensor - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brolm path: brolm - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/broimage path: broimage @@ -130,26 +130,26 @@ jobs: name: Coverage runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: path: brosoundml - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/bromath path: bromath - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brotensor path: brotensor - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brolm path: brolm - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/broimage path: broimage @@ -207,7 +207,7 @@ jobs: - name: Upload HTML report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-html path: brosoundml/coverage-html/ diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 68fa757..625df9d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -28,28 +28,28 @@ jobs: actions: read steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: path: brosoundml - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/bromath path: bromath - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brotensor path: brotensor - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/brolm path: brolm # Needed transitively: brolm resolves broimage from the top-level source # dir, which here is brosoundml. See the note in ci.yml. - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: repository: wlejon/broimage path: broimage @@ -82,7 +82,7 @@ jobs: # The query set lives in the config file, which also documents why # cpp/path-injection is excluded. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: c-cpp build-mode: manual @@ -95,6 +95,6 @@ jobs: run: cmake --build build --parallel 4 - name: Analyze - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: /language:c-cpp