From 318ea21e5ccba0512e01441cf71cd89e9143de02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 17:44:03 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `SonarSource/sonarqube-scan-action` from 6 to 7 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/Build.yml | 2 +- .github/workflows/Publish.yml | 2 +- .github/workflows/QA.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 23d0bb1..bc39e7f 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -35,7 +35,7 @@ jobs: run: poetry build - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: keystone-client-python path: dist \ No newline at end of file diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index 5a38b43..2b9ce22 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Fetch build artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: keystone-client-python path: dist diff --git a/.github/workflows/QA.yml b/.github/workflows/QA.yml index f86a460..a875e00 100644 --- a/.github/workflows/QA.yml +++ b/.github/workflows/QA.yml @@ -36,7 +36,7 @@ jobs: fetch-depth: 0 - name: SonarQube Scan - uses: SonarSource/sonarqube-scan-action@v6 + uses: SonarSource/sonarqube-scan-action@v7 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}