From f5d8f07f5add1bf80de048f3ed7aafc477a0d67a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 22:20:04 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [5monkeys/cobertura-action](https://github.com/5monkeys/cobertura-action), [actions/setup-python](https://github.com/actions/setup-python) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 3 to 4 - [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/v3...v4) Updates `5monkeys/cobertura-action` from 13 to 14 - [Release notes](https://github.com/5monkeys/cobertura-action/releases) - [Commits](https://github.com/5monkeys/cobertura-action/compare/4157521550018abbbd29dfdf1b5963e907ea37f0...ee5787cc56634acddedc51f21c7947985531e6eb) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: 5monkeys/cobertura-action 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-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/test-reporter.yml | 2 +- .github/workflows/test.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-reporter.yml b/.github/workflows/test-reporter.yml index d7bd68fc..630581d6 100644 --- a/.github/workflows/test-reporter.yml +++ b/.github/workflows/test-reporter.yml @@ -36,7 +36,7 @@ jobs: --dir . env: GH_TOKEN: ${{ github.token }} - - uses: 5monkeys/cobertura-action@4157521550018abbbd29dfdf1b5963e907ea37f0 + - uses: 5monkeys/cobertura-action@ee5787cc56634acddedc51f21c7947985531e6eb with: path: "**/coverage.xml" skip_covered: false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 57efb0b8..5afecb89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,14 +18,14 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: make license lint: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: make docker-lint coverage: @@ -34,9 +34,9 @@ jobs: steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' # As defined in tests/scripts/docker/run_tests.sh cache: 'pip' # caching pip dependencies @@ -52,7 +52,7 @@ jobs: - name: Store test results if: success() || failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results path: |