Skip to content

Commit 7ac67f3

Browse files
authoredMar 26, 2024
build(deps): bump the github-actions group with 2 updates (#5125)
Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [buildsville/add-remove-label](https://github.com/buildsville/add-remove-label). Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `buildsville/add-remove-label` from 2.0.0 to 2.0.1 - [Release notes](https://github.com/buildsville/add-remove-label/releases) - [Commits](buildsville/add-remove-label@v2.0.0...v2.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: buildsville/add-remove-label dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7a2781c commit 7ac67f3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.github/workflows/browser-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ref: ${{ github.event.pull_request.head.sha }}
2121
persist-credentials: false
2222
- name: 'Cache node_modules'
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
with:
2525
path: '~/.npm'
2626
key: "ubuntu-latest-node-full-lts-${{ hashFiles('**/package-lock.json') }}"
@@ -32,7 +32,7 @@ jobs:
3232
SAUCE_USERNAME: '${{secrets.SAUCE_USERNAME}}'
3333
SAUCE_ACCESS_KEY: '${{secrets.SAUCE_ACCESS_KEY}}'
3434
- name: remove 'run-browser-test' label
35-
uses: buildsville/add-remove-label@v2.0.0
35+
uses: buildsville/add-remove-label@v2.0.1
3636
if: ${{ always() }}
3737
with:
3838
token: ${{secrets.GITHUB_TOKEN}}

‎.github/workflows/mocha.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
persist-credentials: false
7272
- name: 'Cache node_modules'
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: '~/.npm'
7676
key: "ubuntu-latest-node-lts-${{ hashFiles('**/package-lock.json') }}"
@@ -113,7 +113,7 @@ jobs:
113113
run: |
114114
echo "dir=$(npm config get cache)" >> $env:GITHUB_OUTPUT
115115
- name: 'Cache node_modules'
116-
uses: actions/cache@v3
116+
uses: actions/cache@v4
117117
with:
118118
path: ${{ matrix.os == 'ubuntu-latest' && '~/.npm' || steps.npm-cache.outputs.dir }}
119119
key: "${{ matrix.os }}-node-v${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}"
@@ -152,7 +152,7 @@ jobs:
152152
with:
153153
persist-credentials: false
154154
- name: 'Cache node_modules'
155-
uses: actions/cache@v3
155+
uses: actions/cache@v4
156156
with:
157157
path: '~/.npm'
158158
# this key is different than above, since we are running scripts
@@ -189,7 +189,7 @@ jobs:
189189
with:
190190
persist-credentials: false
191191
- name: 'Cache node_modules'
192-
uses: actions/cache@v3
192+
uses: actions/cache@v4
193193
with:
194194
path: '~/.npm'
195195
# this key is different than above, since we are running scripts

0 commit comments

Comments
 (0)