Skip to content

Commit

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

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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 29, 2024
1 parent f11f1f3 commit d2e80a3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- php-version: '8.2'
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

# @TODO Figure out if coverage for every version is actually useful or not
# - name: Enable coverage
Expand All @@ -58,7 +58,7 @@ jobs:

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

- name: Setup cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.composer
Expand All @@ -142,7 +142,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 - PHP ${{ matrix.php-version }}
Expand All @@ -160,7 +160,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 @@ -174,7 +174,7 @@ jobs:

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

0 comments on commit d2e80a3

Please sign in to comment.