Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(workspace): update to node 16 and remove deprecated set-output (#2753)

authored by

Jovi De Croock and committed by
GitHub
29786b75 ebcde6e9

+56 -71
+1 -1
.github/actions/yarn-run/action.yml
··· 5 5 description: 'Command' 6 6 default: 'help' 7 7 runs: 8 - using: 'node12' 8 + using: 'node16' 9 9 main: 'action.js'
+14 -13
.github/workflows/ci.yml
··· 12 12 timeout-minutes: 10 13 13 steps: 14 14 - name: Checkout Repo 15 - uses: actions/checkout@v2 15 + uses: actions/checkout@v3 16 16 with: 17 17 fetch-depth: 0 18 18 - name: Setup Node 19 - uses: actions/setup-node@v1 19 + uses: actions/setup-node@v3 20 20 with: 21 - node-version: '14' 21 + node-version: '16' 22 22 - name: Get Yarn cache directory 23 23 id: yarn-cache-dir-path 24 - run: echo "::set-output name=dir::$(yarn cache dir)" 24 + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT 25 + 25 26 - name: Use Yarn cache 26 - uses: actions/cache@v2 27 + uses: actions/cache@v3 27 28 id: yarn-cache 28 29 with: 29 30 path: | ··· 34 35 ${{ runner.os }}-yarn- 35 36 - name: Use node_modules cache 36 37 id: node-modules-cache 37 - uses: actions/cache@v2 38 + uses: actions/cache@v3 38 39 with: 39 40 path: node_modules 40 41 key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} ··· 52 53 - name: Build 53 54 run: yarn workspace @urql/core build 54 55 - name: e2e tests 🧪 55 - uses: cypress-io/github-action@v2 56 + uses: cypress-io/github-action@v4 56 57 with: 57 58 command: yarn cypress run-ct 58 59 working-directory: packages/react-urql ··· 69 70 NODE_INDEX: ${{matrix.node}} 70 71 steps: 71 72 - name: Checkout Repo 72 - uses: actions/checkout@v2 73 + uses: actions/checkout@v3 73 74 with: 74 75 fetch-depth: 0 75 76 - name: Setup Node 76 - uses: actions/setup-node@v1 77 + uses: actions/setup-node@v3 77 78 with: 78 - node-version: '14' 79 + node-version: '16' 79 80 - name: Get Yarn cache directory 80 81 id: yarn-cache-dir-path 81 - run: echo "::set-output name=dir::$(yarn cache dir)" 82 + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT 82 83 - name: Use Yarn cache 83 - uses: actions/cache@v1 84 + uses: actions/cache@v3 84 85 id: yarn-cache 85 86 with: 86 87 path: ${{ steps.yarn-cache-dir-path.outputs.dir }} ··· 89 90 ${{ runner.os }}-yarn- 90 91 - name: Use node_modules cache 91 92 id: node-modules-cache 92 - uses: actions/cache@v2 93 + uses: actions/cache@v3 93 94 with: 94 95 path: node_modules 95 96 key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
+6 -6
.github/workflows/release.yml
··· 10 10 timeout-minutes: 20 11 11 steps: 12 12 - name: Checkout Repo 13 - uses: actions/checkout@v2 13 + uses: actions/checkout@v3 14 14 with: 15 15 fetch-depth: 0 16 16 persist-credentials: false 17 17 18 18 - name: Setup Node 19 - uses: actions/setup-node@v1 19 + uses: actions/setup-node@v3 20 20 with: 21 - node-version: '14' 21 + node-version: '16' 22 22 23 23 - name: Get Yarn cache directory 24 24 id: yarn-cache-dir-path 25 - run: echo "::set-output name=dir::$(yarn cache dir)" 25 + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT 26 26 27 27 - name: Use Yarn cache 28 - uses: actions/cache@v2 28 + uses: actions/cache@v3 29 29 id: yarn-cache 30 30 with: 31 31 path: ${{ steps.yarn-cache-dir-path.outputs.dir }} ··· 35 35 36 36 - name: Use node_modules cache 37 37 id: node-modules-cache 38 - uses: actions/cache@v2 38 + uses: actions/cache@v3 39 39 with: 40 40 path: node_modules 41 41 key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
+6 -6
.github/workflows/site.yml
··· 19 19 timeout-minutes: 10 20 20 steps: 21 21 - name: Checkout Repo 22 - uses: actions/checkout@v2 22 + uses: actions/checkout@v3 23 23 with: 24 24 fetch-depth: 0 25 25 26 26 - name: Setup Node 27 - uses: actions/setup-node@v1 27 + uses: actions/setup-node@v3 28 28 with: 29 - node-version: '14' 29 + node-version: '16' 30 30 31 31 - name: Get Yarn cache directory 32 32 id: yarn-cache-dir-path 33 - run: echo "::set-output name=dir::$(yarn cache dir)" 33 + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT 34 34 35 35 - name: Use Yarn cache 36 - uses: actions/cache@v2 36 + uses: actions/cache@v3 37 37 id: yarn-cache 38 38 with: 39 39 path: ${{ steps.yarn-cache-dir-path.outputs.dir }} ··· 43 43 44 44 - name: Use node_modules cache 45 45 id: node-modules-cache 46 - uses: actions/cache@v2 46 + uses: actions/cache@v3 47 47 with: 48 48 path: node_modules 49 49 key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
+2 -1
package.json
··· 64 64 "wonka": "^6.0.0" 65 65 }, 66 66 "devDependencies": { 67 - "@actions/artifact": "^0.5.1", 67 + "@actions/artifact": "^1.1.0", 68 + "@actions/core": "^1.10.0", 68 69 "@babel/core": "^7.18.10", 69 70 "@babel/plugin-transform-block-scoping": "^7.18.9", 70 71 "@babel/plugin-transform-react-jsx": "^7.18.10",
+27 -44
yarn.lock
··· 2 2 # yarn lockfile v1 3 3 4 4 5 - "@actions/artifact@^0.5.1": 6 - version "0.5.1" 7 - resolved "https://registry.yarnpkg.com/@actions/artifact/-/artifact-0.5.1.tgz#1eeea3236fd89e3f39f5a491649cb293c3872340" 8 - integrity sha512-wKXEa4fhvgsw3kPu74F3J6eAi92rqv7BvpjEAmiqmDFeuDj6cyqWDWXx6axWfiBmmln1/LVf1DLWikbciKkoVQ== 5 + "@actions/artifact@^1.1.0": 6 + version "1.1.0" 7 + resolved "https://registry.yarnpkg.com/@actions/artifact/-/artifact-1.1.0.tgz#762b2c05795accb464eaf803e7a2b4d6b325846d" 8 + integrity sha512-shO+w/BAnzRnFhfsgUao8sxjByAMqDdfvek2LLKeCueBKXoTrAcp7U/hs9Fdx+z9g7Q0mbIrmHAzAAww4HK1bQ== 9 9 dependencies: 10 10 "@actions/core" "^1.2.6" 11 - "@actions/http-client" "^1.0.11" 12 - "@types/tmp" "^0.1.0" 13 - tmp "^0.1.0" 14 - tmp-promise "^2.0.2" 11 + "@actions/http-client" "^2.0.1" 12 + tmp "^0.2.1" 13 + tmp-promise "^3.0.2" 15 14 16 - "@actions/core@^1.2.6": 17 - version "1.2.7" 18 - resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.7.tgz#594f8c45b213f0146e4be7eda8ae5cf4e198e5ab" 19 - integrity sha512-kzLFD5BgEvq6ubcxdgPbRKGD2Qrgya/5j+wh4LZzqT915I0V3rED+MvjH6NXghbvk1MXknpNNQ3uKjXSEN00Ig== 15 + "@actions/core@^1.10.0", "@actions/core@^1.2.6": 16 + version "1.10.0" 17 + resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.10.0.tgz#44551c3c71163949a2f06e94d9ca2157a0cfac4f" 18 + integrity sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug== 19 + dependencies: 20 + "@actions/http-client" "^2.0.1" 21 + uuid "^8.3.2" 20 22 21 - "@actions/http-client@^1.0.11": 22 - version "1.0.11" 23 - resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-1.0.11.tgz#c58b12e9aa8b159ee39e7dd6cbd0e91d905633c0" 24 - integrity sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg== 23 + "@actions/http-client@^2.0.1": 24 + version "2.0.1" 25 + resolved "https://registry.yarnpkg.com/@actions/http-client/-/http-client-2.0.1.tgz#873f4ca98fe32f6839462a6f046332677322f99c" 26 + integrity sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw== 25 27 dependencies: 26 - tunnel "0.0.6" 28 + tunnel "^0.0.6" 27 29 28 30 "@ampproject/remapping@^2.1.0": 29 31 version "2.2.0" ··· 666 668 dependencies: 667 669 "@babel/helper-plugin-utils" "^7.12.13" 668 670 669 - "@babel/plugin-transform-block-scoping@^7.12.12", "@babel/plugin-transform-block-scoping@^7.12.13": 670 - version "7.13.16" 671 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.13.16.tgz#a9c0f10794855c63b1d629914c7dcfeddd185892" 672 - integrity sha512-ad3PHUxGnfWF4Efd3qFuznEtZKoBp0spS+DgqzVzRPV7urEBvPLue3y2j80w4Jf2YLzZHj8TOv/Lmvdmh3b2xg== 673 - dependencies: 674 - "@babel/helper-plugin-utils" "^7.13.0" 675 - 676 - "@babel/plugin-transform-block-scoping@^7.18.9": 671 + "@babel/plugin-transform-block-scoping@^7.12.12", "@babel/plugin-transform-block-scoping@^7.12.13", "@babel/plugin-transform-block-scoping@^7.18.9": 677 672 version "7.18.9" 678 673 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz#f9b7e018ac3f373c81452d6ada8bd5a18928926d" 679 674 integrity sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== ··· 3068 3063 version "1.0.7" 3069 3064 resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4" 3070 3065 integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ== 3071 - 3072 - "@types/tmp@^0.1.0": 3073 - version "0.1.0" 3074 - resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.1.0.tgz#19cf73a7bcf641965485119726397a096f0049bd" 3075 - integrity sha512-6IwZ9HzWbCq6XoQWhxLpDjuADodH/MKXRUIDFudvgjcVdjFknvmR+DNsoUeer4XPrEnrZs04Jj+kfV9pFsrhmA== 3076 3066 3077 3067 "@types/uglify-js@*": 3078 3068 version "3.13.0" ··· 16230 16220 resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" 16231 16221 integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== 16232 16222 16233 - tmp-promise@^2.0.2: 16234 - version "2.1.1" 16235 - resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-2.1.1.tgz#eb97c038995af74efbfe8156f5e07fdd0c935539" 16236 - integrity sha512-Z048AOz/w9b6lCbJUpevIJpRpUztENl8zdv1bmAKVHimfqRFl92ROkmT9rp7TVBnrEw2gtMTol/2Cp2S2kJa4Q== 16223 + tmp-promise@^3.0.2: 16224 + version "3.0.3" 16225 + resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" 16226 + integrity sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ== 16237 16227 dependencies: 16238 - tmp "0.1.0" 16239 - 16240 - tmp@0.1.0, tmp@^0.1.0: 16241 - version "0.1.0" 16242 - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" 16243 - integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== 16244 - dependencies: 16245 - rimraf "^2.6.3" 16228 + tmp "^0.2.0" 16246 16229 16247 16230 tmp@^0.0.33: 16248 16231 version "0.0.33" ··· 16251 16234 dependencies: 16252 16235 os-tmpdir "~1.0.2" 16253 16236 16254 - tmp@~0.2.1: 16237 + tmp@^0.2.0, tmp@^0.2.1, tmp@~0.2.1: 16255 16238 version "0.2.1" 16256 16239 resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 16257 16240 integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== ··· 16477 16460 dependencies: 16478 16461 safe-buffer "^5.0.1" 16479 16462 16480 - tunnel@0.0.6: 16463 + tunnel@^0.0.6: 16481 16464 version "0.0.6" 16482 16465 resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 16483 16466 integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==