Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[dependabot][ghaction] - (deps): Bump the all-actions group with 3 up…
…dates Bumps the all-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) 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 `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: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 25, 2024
commit bef9bf29d240014e0c3cae33f427f07d00dd9903
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
composer-flag: --prefer-lowest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.composer
Expand Down Expand Up @@ -133,7 +133,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 @@ -147,7 +147,7 @@ jobs:

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

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

nightly-tests:
name: Nightly - Symfony ${{ matrix.symfony-version }}
Expand All @@ -187,7 +187,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 @@ -201,7 +201,7 @@ jobs:

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