Skip to content

Commit f8db06b

Browse files
Bump the all-actions group with 2 updates
Bumps the all-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f7ecb1e commit f8db06b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: [ubuntu-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3

.github/workflows/php.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ jobs:
7171
git config --global core.autocrlf false
7272
git config --global core.eol lf
7373
74-
- uses: actions/checkout@v6
74+
- uses: actions/checkout@v7
7575

7676
- name: Get composer cache directory
7777
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
7878

7979
- name: Cache composer dependencies
80-
uses: actions/cache@v5
80+
uses: actions/cache@v6
8181
with:
8282
path: ${{ env.COMPOSER_CACHE }}
8383
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -133,13 +133,13 @@ jobs:
133133
git config --global core.autocrlf false
134134
git config --global core.eol lf
135135
136-
- uses: actions/checkout@v6
136+
- uses: actions/checkout@v7
137137

138138
- name: Get composer cache directory
139139
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
140140

141141
- name: Cache composer dependencies
142-
uses: actions/cache@v5
142+
uses: actions/cache@v6
143143
with:
144144
path: ${{ env.COMPOSER_CACHE }}
145145
key: ${{ runner.os }}-composer-${{ hashFiles('**\composer.json') }}
@@ -171,13 +171,13 @@ jobs:
171171
- name: Setup problem matchers for PHP
172172
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
173173

174-
- uses: actions/checkout@v6
174+
- uses: actions/checkout@v7
175175

176176
- name: Get composer cache directory
177177
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
178178

179179
- name: Cache composer dependencies
180-
uses: actions/cache@v5
180+
uses: actions/cache@v6
181181
with:
182182
path: ${{ env.COMPOSER_CACHE }}
183183
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -225,13 +225,13 @@ jobs:
225225
- name: Setup problem matchers for PHP
226226
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
227227

228-
- uses: actions/checkout@v6
228+
- uses: actions/checkout@v7
229229

230230
- name: Get composer cache directory
231231
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
232232

233233
- name: Cache composer dependencies
234-
uses: actions/cache@v5
234+
uses: actions/cache@v6
235235
with:
236236
path: ${{ env.COMPOSER_CACHE }}
237237
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -254,7 +254,7 @@ jobs:
254254
runs-on: [ubuntu-latest]
255255
needs: [unit-tests-linux]
256256
steps:
257-
- uses: actions/checkout@v6
257+
- uses: actions/checkout@v7
258258

259259
- uses: actions/download-artifact@v8
260260
with:

0 commit comments

Comments
 (0)