From 3d366829dd88c9cde9c08d2024686ef0159db453 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jul 2024 14:47:11 -0700 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates (#204) Bumps the github-actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/setup-python](https://github.com/actions/setup-python) and [SonarSource/sonarcloud-github-c-cpp](https://github.com/sonarsource/sonarcloud-github-c-cpp). Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v4) Updates `actions/setup-python` from 5.1.0 to 5.1.1 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/82c7e631bb3cdc910f68e0081d67478d79c6982d...39cd14951b08e74b54015e9e001cdefcf80e669f) Updates `SonarSource/sonarcloud-github-c-cpp` from 2.0.2 to 3.1.0 - [Release notes](https://github.com/sonarsource/sonarcloud-github-c-cpp/releases) - [Commits](https://github.com/sonarsource/sonarcloud-github-c-cpp/compare/e4882e1621ad2fb48dddfa48287411bed34789b1...816b1822d71776ee0d32bc012e95024ec52ac1fc) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: SonarSource/sonarcloud-github-c-cpp dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/sonar.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d08346..1ccaa34 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,14 +83,14 @@ jobs: - name: Upload dist (non-windows) if: ${{ matrix.os != 'windows-latest' }} - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 with: name: pacparser-dist-${{ matrix.os }} path: src/pacparser*.zip - name: Upload dist (windows) if: ${{ matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 with: name: pacparser-dist-${{ matrix.os }} path: src/dist @@ -115,7 +115,7 @@ jobs: zip -r $name.zip $name - name: Upload pacparser release - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pacparser-release-binaries path: pacparser-*.zip @@ -149,7 +149,7 @@ jobs: ref: ${{ github.event.inputs.tag }} - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.architecture }} @@ -168,7 +168,7 @@ jobs: run: make -C src -f Makefile.win32 pymod-dist - name: Upload dist - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 with: name: pacparser-python-${{ matrix.python-version }}-${{ matrix.os }}-dist @@ -223,7 +223,7 @@ jobs: --candidate=100)" >> $GITHUB_ENV - name: Set up Python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 - name: Set up setuptools run: | diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 917cba4..ff2526d 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Install sonar-scanner and build-wrapper - uses: SonarSource/sonarcloud-github-c-cpp@e4882e1621ad2fb48dddfa48287411bed34789b1 # v2.0.2 + uses: SonarSource/sonarcloud-github-c-cpp@816b1822d71776ee0d32bc012e95024ec52ac1fc # v3.1.0 - name: Run sonar-scanner env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}