Skip to content

Commit 2138d63

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.5.1...v5.5.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fe3f357 commit 2138d63

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/sync-local-fallback-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
ref: main
1515
fetch-depth: 0
@@ -26,7 +26,7 @@ jobs:
2626
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2727

2828
- name: Configure Composer cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ${{ steps.composer-cache.outputs.dir }}
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/sync-spec-test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
ref: main
1515
fetch-depth: 0
@@ -26,7 +26,7 @@ jobs:
2626
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2727

2828
- name: Configure Composer cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ${{ steps.composer-cache.outputs.dir }}
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Setup PHP
3131
uses: shivammathur/setup-php@v2
@@ -41,7 +41,7 @@ jobs:
4141
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4242

4343
- name: Configure Composer cache
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: ${{ steps.composer-cache.outputs.dir }}
4747
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Upload code coverage report
6767
if: ${{ matrix.coverage == true }}
68-
uses: codecov/codecov-action@v5.5.1
68+
uses: codecov/codecov-action@v5.5.2
6969
with:
7070
file: build/logs/clover.xml
7171
flags: php
@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout
87-
uses: actions/checkout@v5
87+
uses: actions/checkout@v6
8888

8989
- name: Setup PHP
9090
uses: shivammathur/setup-php@v2
@@ -98,7 +98,7 @@ jobs:
9898
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
9999

100100
- name: Configure Composer cache
101-
uses: actions/cache@v4
101+
uses: actions/cache@v5
102102
with:
103103
path: ${{ steps.composer-cache.outputs.dir }}
104104
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
- name: Checkout
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v6
127127

128128
- name: Setup PHP
129129
uses: shivammathur/setup-php@v2
@@ -137,7 +137,7 @@ jobs:
137137
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
138138

139139
- name: Configure Composer cache
140-
uses: actions/cache@v4
140+
uses: actions/cache@v5
141141
with:
142142
path: ${{ steps.composer-cache.outputs.dir }}
143143
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)