Skip to content

Commit 2ba3059

Browse files
Bump the github-actions group across 2 directories with 2 updates
Bumps the github-actions group with 1 update in the /.github/setup-node directory: [actions/cache](https://github.com/actions/cache). Bumps the github-actions group with 2 updates in the /.github/workflows directory: [actions/cache](https://github.com/actions/cache) and [ramsey/composer-install](https://github.com/ramsey/composer-install). Updates `actions/cache` from 4.2.1 to 4.2.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0c907a7...d4323d4) Updates `actions/cache` from 4.2.1 to 4.2.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0c907a7...d4323d4) Updates `ramsey/composer-install` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/ramsey/composer-install/releases) - [Commits](ramsey/composer-install@57532f8...a2636af) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: ramsey/composer-install dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fc3f948 commit 2ba3059

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/setup-node/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525

2626
- name: Cache node_modules
2727
id: cache-node_modules
28-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
28+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
2929
with:
3030
path: '**/node_modules'
3131
key: node_modules-${{ runner.os }}-${{ runner.arch }}-${{ steps.node-version.outputs.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}

.github/workflows/rnmobile-android-runner.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: ./.github/setup-node
3939

4040
- name: Restore tests setup cache
41-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
41+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4242
with:
4343
path: |
4444
~/.appium
@@ -53,7 +53,7 @@ jobs:
5353
# AVD cache disabled as it caused emulator termination to hang indefinitely.
5454
# https://github.com/ReactiveCircus/android-emulator-runner/issues/385
5555
# - name: AVD cache
56-
# uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
56+
# uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
5757
# id: avd-cache
5858
# with:
5959
# path: |

.github/workflows/rnmobile-ios-runner.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: ./.github/setup-node
4444

4545
- name: Restore tests setup cache
46-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
46+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4747
with:
4848
path: |
4949
~/.appium
@@ -56,15 +56,15 @@ jobs:
5656
run: find package-lock.json packages/react-native-editor/ios packages/react-native-aztec/ios packages/react-native-bridge/ios -type f -print0 | sort -z | xargs -0 shasum | tee ios-checksums.txt
5757

5858
- name: Restore build cache
59-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
59+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6060
with:
6161
path: |
6262
packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator/GutenbergDemo.app
6363
packages/react-native-editor/ios/build/WDA
6464
key: ${{ runner.os }}-ios-build-${{ matrix.xcode }}-${{ matrix.device }}-${{ hashFiles('ios-checksums.txt') }}
6565

6666
- name: Restore pods cache
67-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
67+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6868
with:
6969
path: |
7070
packages/react-native-editor/ios/Pods

.github/workflows/unit-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
202202
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
203203
- name: Install Composer dependencies
204-
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # v3.0.0
204+
uses: ramsey/composer-install@a2636af0004d1c0499ffca16ac0b4cc94df70565 # v3.1.0
205205
with:
206206
custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F")
207207

@@ -296,15 +296,15 @@ jobs:
296296
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT
297297

298298
- name: Cache PHPCS scan cache
299-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
299+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
300300
with:
301301
path: .cache/phpcs.json
302302
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }}
303303

304304
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
305305
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
306306
- name: Install Composer dependencies
307-
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # v3.0.0
307+
uses: ramsey/composer-install@a2636af0004d1c0499ffca16ac0b4cc94df70565 # v3.1.0
308308
with:
309309
custom-cache-suffix: ${{ steps.get-date.outputs.date }}
310310

0 commit comments

Comments
 (0)