Skip to content

Commit

Permalink
Bump the github-dependencies group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the github-dependencies group with 3 updates: [github/codeql-action](https://github.com/github/codeql-action), [lukka/get-cmake](https://github.com/lukka/get-cmake) and [coverallsapp/github-action](https://github.com/coverallsapp/github-action).


Updates `github/codeql-action` from 3.28.1 to 3.28.5
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@v3.28.1...v3.28.5)

Updates `lukka/get-cmake` from 3.31.4 to 3.31.5
- [Release notes](https://github.com/lukka/get-cmake/releases)
- [Commits](lukka/get-cmake@v3.31.4...v3.31.5)

Updates `coverallsapp/github-action` from 2.3.4 to 2.3.6
- [Release notes](https://github.com/coverallsapp/github-action/releases)
- [Commits](coverallsapp/github-action@v2.3.4...v2.3.6)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: lukka/get-cmake
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: coverallsapp/github-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 27, 2025
1 parent 32a3e8f commit 4d0e803
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
with:
submodules: recursive
- name: Initialize CodeQL
uses: github/codeql-action/init@v3.28.1
uses: github/codeql-action/init@v3.28.5
with:
languages: ${{ matrix.language }}
setup-python-dependencies: false
- name: Set up CMake
if: matrix.language == 'cpp'
uses: lukka/get-cmake@v3.31.4
uses: lukka/get-cmake@v3.31.5
- name: Build CMake
if: matrix.language == 'cpp'
working-directory: ${{ github.workspace }}/src/hades_extensions
run: cmake . --preset LinuxDebug && cmake --build build-debug
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3.28.1
uses: github/codeql-action/analyze@v3.28.5
with:
category: /language:${{ matrix.language }}
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
submodules: recursive
- name: Set up CMake
uses: lukka/get-cmake@v3.31.4
uses: lukka/get-cmake@v3.31.5
- name: Configure CMake
working-directory: ${{ github.workspace }}/src/hades_extensions
run: cmake --preset LinuxDebug
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1.13.0
- name: Set up CMake
uses: lukka/get-cmake@v3.31.4
uses: lukka/get-cmake@v3.31.5
- name: Install Mesa on Windows for headless Arcade
if: matrix.os == 'windows-latest'
uses: ssciwr/setup-mesa-dist-win@v2
Expand All @@ -40,7 +40,7 @@ jobs:
fi
pipx run nox --error-on-missing-interpreters --stop-on-first-error -s tests-${{ matrix.python-version }}
- name: Upload coverage report
uses: coverallsapp/github-action@v2.3.4
uses: coverallsapp/github-action@v2.3.6
with:
file: coverage.lcov
flag-name: run-python-${{ matrix.os }}-${{ matrix.python-version }}
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1.13.0
- name: Set up CMake
uses: lukka/get-cmake@v3.31.4
uses: lukka/get-cmake@v3.31.5
- name: Build CMake and run CTest
working-directory: ${{ github.workspace }}/src/hades_extensions
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
gcovr -r ${{ github.workspace }} --exclude src/hades_extensions/build-debug --exclude src/hades_extensions/tests --exclude src/hades_extensions/src/binding.cpp --coveralls coverage.json
- name: Upload coverage report
if: matrix.os == 'ubuntu-latest'
uses: coverallsapp/github-action@v2.3.4
uses: coverallsapp/github-action@v2.3.6
with:
file: coverage.json
flag-name: run-cpp-${{ matrix.os }}
Expand All @@ -87,6 +87,6 @@ jobs:
needs: [python, cpp]
steps:
- name: Upload coverage report
uses: coverallsapp/github-action@v2.3.4
uses: coverallsapp/github-action@v2.3.6
with:
parallel-finished: true

0 comments on commit 4d0e803

Please sign in to comment.