Skip to content

Commit

Permalink
[dependabot][ghaction] - (deps): Bump the all-actions group with 4 up…
Browse files Browse the repository at this point in the history
…dates

Bumps the all-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [actions/dependency-review-action](https://github.com/actions/dependency-review-action).


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](actions/checkout@v3...v4)

Updates `actions/cache` from 3 to 4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

Updates `codecov/codecov-action` from 3 to 4
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v3...v4)

Updates `actions/dependency-review-action` from 1 to 4
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](actions/dependency-review-action@v1...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] committed Mar 13, 2024
1 parent e142735 commit c8d985b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
- php-version: '8.2'
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Enable coverage
if: ${{ matrix.php-version == '8.2' }}
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.composer
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
# See the reports at https://codecov.io/gh/yoanm/php-jsonrpc-server-sdk
- name: Upload unit tests coverage to codecov
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: "build/coverage-phpunit/unit.clover"
name: "unit-tests-${{ matrix.php-version }}"
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Upload functional tests coverage to codecov
if: ${{ env.COVERAGE_TYPE == 'xdebug' }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: "build/coverage-behat/clover.xml,build/coverage-phpunit/functional.clover"
name: "functional-tests-${{ matrix.php-version }}"
Expand All @@ -116,7 +116,7 @@ jobs:
name: Static checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP 8.2
uses: shivammathur/setup-php@v2
Expand All @@ -130,7 +130,7 @@ jobs:

- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.composer
Expand All @@ -145,7 +145,7 @@ jobs:

- name: Dependencies check
if: ${{ github.event_name == 'pull_request' }}
uses: actions/dependency-review-action@v1
uses: actions/dependency-review-action@v4

finalize-codacy-coverage-report:
runs-on: ubuntu-latest
Expand All @@ -155,7 +155,7 @@ jobs:
steps:
- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.CODACY_CACHE_PATH }}
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
Expand All @@ -202,7 +202,7 @@ jobs:

- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.composer
Expand Down

0 comments on commit c8d985b

Please sign in to comment.