Skip to content

Commit 0f6c3d9

Browse files
committed
Build: Update GitHub Actions
* Build(deps): Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... * Build(deps): Bump actions/setup-node from 2.1.2 to 3.3.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.1.2 to 3.3.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v2.1.2...v3.3.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... * Build(deps): Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Closes gh-5067 (cherry picked from commit 52f452b)
1 parent 5a36301 commit 0f6c3d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node.js.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ jobs:
3939
BROWSERS: "FirefoxHeadless"
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343

4444
- name: Cache
45-
uses: actions/cache@v2
45+
uses: actions/cache@v3
4646
with:
4747
path: ~/.npm
4848
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
4949
restore-keys: |
5050
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-
5151
5252
- name: Use Node.js ${{ matrix.NODE_VERSION }}
53-
uses: actions/setup-node@v2.1.2
53+
uses: actions/setup-node@v3.3.0
5454
with:
5555
node-version: ${{ matrix.NODE_VERSION }}
5656

0 commit comments

Comments
 (0)