Skip to content

Commit

Permalink
chore: bump version to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Sep 6, 2023
1 parent f58698c commit ae8882d
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Pull Request]
if: ${{ github.event_name == 'pull_request' }}
with:
Expand All @@ -32,7 +32,7 @@ jobs:
# We need to fetch all branches and commits so that Nx affected has a base to compare against.
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Default Branch]
if: ${{ github.event_name != 'pull_request' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: jameshenry/publish-shell-action@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Pull Request]
if: ${{ github.event_name == 'pull_request' }}
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Push]
if: ${{ github.event_name != 'pull_request' }}
with:
fetch-depth: 0

- name: Set Node.js 18.x
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: Install
run: yarn --frozen-lockfile
Expand Down
20 changes: 10 additions & 10 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19771,7 +19771,7 @@ const { Blob, File: NativeFile } = __nccwpck_require__(4300)
const { kBodyUsed } = __nccwpck_require__(2785)
const assert = __nccwpck_require__(9491)
const { isErrored } = __nccwpck_require__(3983)
const { isUint8Array, isArrayBuffer } = __nccwpck_require__(4978)
const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
const { File: UndiciFile } = __nccwpck_require__(8511)
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)

Expand Down Expand Up @@ -26069,7 +26069,7 @@ const { getGlobalOrigin } = __nccwpck_require__(1246)
const { performance } = __nccwpck_require__(4074)
const { isBlobLike, toUSVString, ReadableStreamFrom } = __nccwpck_require__(3983)
const assert = __nccwpck_require__(9491)
const { isUint8Array } = __nccwpck_require__(4978)
const { isUint8Array } = __nccwpck_require__(9830)

// https://nodejs.org/api/crypto.html#determining-if-crypto-support-is-unavailable
/** @type {import('crypto')|undefined} */
Expand Down Expand Up @@ -35996,14 +35996,6 @@ function wrappy (fn, cb) {
module.exports = eval("require")("encoding");


/***/ }),

/***/ 4978:
/***/ ((module) => {

module.exports = eval("require")("util/types");


/***/ }),

/***/ 9491:
Expand Down Expand Up @@ -36190,6 +36182,14 @@ module.exports = require("util");

/***/ }),

/***/ 9830:
/***/ ((module) => {

"use strict";
module.exports = require("util/types");

/***/ }),

/***/ 1267:
/***/ ((module) => {

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/nrwl/nx-set-shas/issues"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"homepage": "https://github.com/nrwl/nx-set-shas#readme",
"dependencies": {
Expand All @@ -20,7 +20,7 @@
"@octokit/action": "^6.0.5"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"@vercel/ncc": "^0.36.1",
"chalk": "^4.1.2",
"husky": "^8.0.1",
"is-ci": "^3.0.1"
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@
dependencies:
"@octokit/openapi-types" "^12.11.0"

"@vercel/ncc@^0.34.0":
version "0.34.0"
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.34.0.tgz#d0139528320e46670d949c82967044a8f66db054"
integrity sha512-G9h5ZLBJ/V57Ou9vz5hI8pda/YQX5HQszCs3AmIus3XzsmRn/0Ptic5otD3xVST8QLKk7AMk7AqpsyQGN7MZ9A==
"@vercel/ncc@^0.36.1":
version "0.36.1"
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.36.1.tgz#d4c01fdbbe909d128d1bf11c7f8b5431654c5b95"
integrity sha512-S4cL7Taa9yb5qbv+6wLgiKVZ03Qfkc4jGRuiUQMQ8HGBD5pcNRnHeYM33zBvJE4/zJGjJJ8GScB+WmTsn9mORw==

ansi-styles@^4.1.0:
version "4.3.0"
Expand Down

0 comments on commit ae8882d

Please sign in to comment.