Skip to content

Commit 0b3b8d7

Browse files
chore(deps): bump the github-actions-updates group with 3 updates (#505)
Bumps the github-actions-updates group with 3 updates: [actions/cache](https://github.com/actions/cache), [nick-fields/retry](https://github.com/nick-fields/retry) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/cache` from 5.0.3 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@cdf6c1f...6682284) Updates `nick-fields/retry` from 3.0.2 to 4.0.0 - [Release notes](https://github.com/nick-fields/retry/releases) - [Commits](nick-fields/retry@ce71cc2...ad98453) Updates `codecov/codecov-action` from 5.5.2 to 5.5.3 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@671740a...1af5884) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-updates - dependency-name: nick-fields/retry dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: codecov/codecov-action dependency-version: 5.5.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f898097 commit 0b3b8d7

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/codeception.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ jobs:
116116
run: mkdir -p ~/.wp-env/downloads tests/_data/plugins tests/_data/mu-plugins
117117

118118
- name: Cache WordPress downloads
119-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
119+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
120120
with:
121121
path: ~/.wp-env/downloads
122122
key: ${{ runner.os }}-wp-env-downloads-${{ hashFiles('.wp-env.json') }}
123123
restore-keys: |
124124
${{ runner.os }}-wp-env-downloads-
125125
126126
- name: Cache WordPress Plugins
127-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
127+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
128128
with:
129129
path: |
130130
tests/_data/plugins
@@ -139,7 +139,7 @@ jobs:
139139
echo GF_KEY=${{ secrets.GF_KEY }} >> .env
140140
141141
- name: Start the Docker testing environment
142-
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
142+
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
143143
with:
144144
timeout_minutes: 10
145145
max_attempts: 3
@@ -182,7 +182,7 @@ jobs:
182182
- name: Upload code coverage report
183183
continue-on-error: true
184184
if: ${{ matrix.coverage }}
185-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
185+
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
186186
with:
187187
token: ${{ secrets.CODECOV_TOKEN }}
188188
files: tests/_output/coverage.xml

.github/workflows/phpcs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> "$GITHUB_OUTPUT"
6767

6868
- name: Cache PHPCS scan cache
69-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
69+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7070
with:
7171
path: tests/_output/phpcs-cache.json
7272
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }}

.github/workflows/phpstan.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> "$GITHUB_OUTPUT"
8282

8383
- name: Cache PHP Static Analysis scan cache
84-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
84+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8585
with:
8686
path: tests/_output # This is defined in the base.neon file.
8787
key: 'phpstan-result-cache-${{ runner.os }}-date-${{ steps.get-date.outputs.date }}'
@@ -107,15 +107,15 @@ jobs:
107107
run: mkdir -p ~/.wp-env/downloads
108108

109109
- name: Cache WordPress downloads
110-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
110+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
111111
with:
112112
path: ~/.wp-env/downloads
113113
key: ${{ runner.os }}-wp-env-downloads-${{ hashFiles('.wp-env.json') }}
114114
restore-keys: |
115115
${{ runner.os }}-wp-env-downloads-
116116
117117
- name: Cache WordPress Plugins
118-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
118+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
119119
with:
120120
path: |
121121
tests/_data/plugins
@@ -130,7 +130,7 @@ jobs:
130130
echo GF_KEY=${{ secrets.GF_KEY }} >> .env
131131
132132
- name: Start the Docker testing environment
133-
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
133+
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
134134
with:
135135
timeout_minutes: 10
136136
max_attempts: 3
@@ -142,7 +142,7 @@ jobs:
142142
run: phpstan analyse -vvv --error-format=checkstyle | cs2pr
143143

144144
- name: Save result cache
145-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
145+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
146146
if: ${{ !cancelled() }}
147147
with:
148148
path: tests/_output

.github/workflows/schema-linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ jobs:
101101
run: mkdir -p ~/.wp-env/downloads tests/_data/plugins tests/_data/mu-plugins
102102

103103
- name: Cache WordPress downloads
104-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
104+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
105105
with:
106106
path: ~/.wp-env/downloads
107107
key: ${{ runner.os }}-wp-env-downloads-${{ hashFiles('.wp-env.json') }}
108108
restore-keys: |
109109
${{ runner.os }}-wp-env-downloads-
110110
111111
- name: Cache WordPress Plugins
112-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
112+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
113113
with:
114114
path: |
115115
tests/_data/plugins
@@ -124,7 +124,7 @@ jobs:
124124
echo GF_KEY=${{ secrets.GF_KEY }} >> .env
125125
126126
- name: Start the Docker testing environment
127-
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
127+
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
128128
with:
129129
timeout_minutes: 10
130130
max_attempts: 3

.github/workflows/upload-schema-artifact.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: npm ci
4848

4949
- name: Cache Docker images
50-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
50+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5151
with:
5252
path: ~/.wp-env
5353
key: ${{ runner.os }}-wp-env-${{ hashFiles('.wp-env.json', 'package.json') }}
@@ -60,7 +60,7 @@ jobs:
6060
echo GF_KEY=${{ secrets.GF_KEY }} >> .env
6161
6262
- name: Start the Docker testing environment
63-
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
63+
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4.0.0
6464
with:
6565
timeout_minutes: 10
6666
max_attempts: 3

0 commit comments

Comments
 (0)