From cab84524d86c82bf61506ea348cfdb95ec25347a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 00:16:53 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `astral-sh/setup-uv` from ba17a16c0afc72ea47311891c76009518d0cf1aa to ed07c7622496a021a7c05439fd0c5f19a610125b - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/ba17a16c0afc72ea47311891c76009518d0cf1aa...ed07c7622496a021a7c05439fd0c5f19a610125b) Updates `SonarSource/sonarqube-scan-action` from 8.0.0 to 8.1.0 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/59db25f34e16620e48ab4bb9e4a5dce155cb5432...7006c4492b2e0ee0f816d36501671557c97f5995) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: ed07c7622496a021a7c05439fd0c5f19a610125b dependency-type: direct:production dependency-group: github-actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d58ae4..0ffe005 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: cache: pip - name: Set up uv - uses: astral-sh/setup-uv@ba17a16c0afc72ea47311891c76009518d0cf1aa + uses: astral-sh/setup-uv@ed07c7622496a021a7c05439fd0c5f19a610125b - name: Generate coverage report run: | @@ -54,7 +54,7 @@ jobs: - name: SonarQube scan if: ${{ secrets.SONAR_TOKEN != '' && secrets.SONAR_PROJECT_KEY != '' && secrets.SONAR_ORGANIZATION != '' }} - uses: SonarSource/sonarqube-scan-action@59db25f34e16620e48ab4bb9e4a5dce155cb5432 + uses: SonarSource/sonarqube-scan-action@7006c4492b2e0ee0f816d36501671557c97f5995 with: args: > -Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 530dfdf..8da3d52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: cache: pip - name: Set up uv - uses: astral-sh/setup-uv@ba17a16c0afc72ea47311891c76009518d0cf1aa + uses: astral-sh/setup-uv@ed07c7622496a021a7c05439fd0c5f19a610125b - name: Run test suite run: uv run --with-requirements requirements.txt python -m unittest discover -s tests -p 'test_*.py'