diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2022-06-27 18:53:31 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2022-06-27 18:59:57 +0200 |
commit | 0f6c3d9efc5f7e844bdcf8ef44f9327f414bea77 (patch) | |
tree | 2cec2ee64f2cf18610cbac1e9e9481f027f4ae93 | |
parent | 5a363017cf80c3329bace5b45812a9dc10fcde7c (diff) | |
download | jquery-0f6c3d9efc5f7e844bdcf8ef44f9327f414bea77.tar.gz jquery-0f6c3d9efc5f7e844bdcf8ef44f9327f414bea77.zip |
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](https://github.com/actions/cache/compare/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](https://github.com/actions/setup-node/compare/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](https://github.com/actions/checkout/compare/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 52f452b2e8881e5ec5c9e880e277c8ecf633e8dc)
-rw-r--r-- | .github/workflows/node.js.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 61586fd30..90dea2a11 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -39,10 +39,10 @@ jobs: BROWSERS: "FirefoxHeadless" steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }} @@ -50,7 +50,7 @@ jobs: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock- - name: Use Node.js ${{ matrix.NODE_VERSION }} - uses: actions/setup-node@v2.1.2 + uses: actions/setup-node@v3.3.0 with: node-version: ${{ matrix.NODE_VERSION }} |