Skip to content

Commit 659c194

Browse files
chore(deps): bump the github-actions-updates group with 3 updates (#513)
Bumps the github-actions-updates group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/cache` from 5.0.4 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@6682284...27d5ce7) Updates `actions/upload-artifact` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@bbbca2d...043fb46) Updates `softprops/action-gh-release` from 2.6.1 to 3.0.0 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@153bb8e...b430933) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-updates - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-updates - dependency-name: softprops/action-gh-release dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major 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 c74053a commit 659c194

6 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
119+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
127+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
128128
with:
129129
path: |
130130
tests/_data/plugins
@@ -165,15 +165,15 @@ jobs:
165165
166166
- name: Upload test failure artifacts
167167
if: failure()
168-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
168+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
169169
with:
170170
name: test-failures-php${{ matrix.php }}-wp${{ matrix.wordpress }}
171171
path: tests/_output/*.fail.html
172172
if-no-files-found: ignore
173173

174174
- name: Upload HTML coverage report as artifact
175175
if: ${{ matrix.coverage }}
176-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
176+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
177177
with:
178178
name: wp-code-coverage-${{ matrix.php }}-${{ matrix.wordpress }}
179179
path: tests/_output/coverage

.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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
69+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
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: 4 additions & 4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
84+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
110+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
118+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
119119
with:
120120
path: |
121121
tests/_data/plugins
@@ -142,7 +142,7 @@ jobs:
142142
run: phpstan analyse -vvv --error-format=checkstyle | cs2pr
143143

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

.github/workflows/schema-linter.yml

Lines changed: 2 additions & 2 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
104+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
112+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
113113
with:
114114
path: |
115115
tests/_data/plugins

.github/workflows/upload-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
npm run plugin-zip
4242
4343
- name: Upload artifact
44-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
44+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4545
with:
4646
name: wp-graphql-gravity-forms
4747
path: wp-graphql-gravity-forms.zip
4848

4949
- name: Upload release asset
50-
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1
50+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
5151
with:
5252
files: wp-graphql-gravity-forms.zip
5353
env:

.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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
50+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5151
with:
5252
path: ~/.wp-env
5353
key: ${{ runner.os }}-wp-env-${{ hashFiles('.wp-env.json', 'package.json') }}
@@ -73,6 +73,6 @@ jobs:
7373
echo "Schema generated: $(wc -l < tests/_output/schema.graphql) lines"
7474
7575
- name: Upload schema as release artifact
76-
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1
76+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
7777
with:
7878
files: tests/_output/schema.graphql

0 commit comments

Comments
 (0)