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: upgrade actions to node 20 (#3513)

authored by

Jovi De Croock and committed by
GitHub
5397567d 2a12141d

+25 -25
+1 -1
.github/actions/discord-message/action.yml
··· 5 5 description: > 6 6 A JSON array to present the published packages. The format is `[{"name": "@xx/xx", "version": "1.2.0"}, {"name": "@xx/xy", "version": "0.8.9"}]` 7 7 runs: 8 - using: 'node16' 8 + using: 'node20' 9 9 main: 'action.mjs'
+1 -1
.github/actions/pnpm-run/action.yml
··· 5 5 description: 'Command' 6 6 default: 'help' 7 7 runs: 8 - using: 'node16' 8 + using: 'node20' 9 9 main: 'action.mjs'
+18 -18
.github/workflows/ci.yml
··· 13 13 timeout-minutes: 10 14 14 steps: 15 15 - name: Checkout Repo 16 - uses: actions/checkout@v3 16 + uses: actions/checkout@v4 17 17 with: 18 18 fetch-depth: 0 19 19 20 20 - name: Setup Node 21 - uses: actions/setup-node@v3 21 + uses: actions/setup-node@v4 22 22 with: 23 23 node-version: 18 24 24 25 25 - name: Setup pnpm 26 - uses: pnpm/action-setup@v2.2.4 26 + uses: pnpm/action-setup@v3 27 27 with: 28 28 version: 8 29 29 run_install: false ··· 33 33 run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 34 34 35 35 - name: Use pnpm store 36 - uses: actions/cache@v3 36 + uses: actions/cache@v4 37 37 id: pnpm-cache 38 38 with: 39 39 path: | ··· 61 61 timeout-minutes: 10 62 62 steps: 63 63 - name: Checkout Repo 64 - uses: actions/checkout@v3 64 + uses: actions/checkout@v4 65 65 with: 66 66 fetch-depth: 0 67 67 68 68 - name: Setup Node 69 - uses: actions/setup-node@v3 69 + uses: actions/setup-node@v4 70 70 with: 71 71 node-version: 18 72 72 73 73 - name: Setup pnpm 74 - uses: pnpm/action-setup@v2.2.4 74 + uses: pnpm/action-setup@v3 75 75 with: 76 76 version: 8 77 77 run_install: false ··· 81 81 run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 82 82 83 83 - name: Use pnpm store 84 - uses: actions/cache@v3 84 + uses: actions/cache@v4 85 85 id: pnpm-cache 86 86 with: 87 87 path: | ··· 98 98 run: pnpm -F @urql/core build && pnpm -F urql build 99 99 100 100 - name: e2e tests 🧪 101 - uses: cypress-io/github-action@v4 101 + uses: cypress-io/github-action@v6 102 102 with: 103 103 install: false 104 104 command: pnpm cypress run --component ··· 110 110 timeout-minutes: 10 111 111 steps: 112 112 - name: Checkout Repo 113 - uses: actions/checkout@v3 113 + uses: actions/checkout@v4 114 114 with: 115 115 fetch-depth: 0 116 116 117 117 - name: Setup Node 118 - uses: actions/setup-node@v3 118 + uses: actions/setup-node@v4 119 119 with: 120 120 node-version: 18 121 121 122 122 - name: Setup pnpm 123 - uses: pnpm/action-setup@v2.2.4 123 + uses: pnpm/action-setup@v3 124 124 with: 125 125 version: 8 126 126 run_install: false ··· 130 130 run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 131 131 132 132 - name: Use pnpm store 133 - uses: actions/cache@v3 133 + uses: actions/cache@v4 134 134 id: pnpm-cache 135 135 with: 136 136 path: | ··· 147 147 run: pnpm -F "@urql/core" -F urql -F "@urql/exchange-execute" build 148 148 149 149 - name: e2e tests 🧪 150 - uses: cypress-io/github-action@v4 150 + uses: cypress-io/github-action@v6 151 151 with: 152 152 install: false 153 153 command: pnpm cypress run --component ··· 165 165 NODE_INDEX: ${{matrix.node}} 166 166 steps: 167 167 - name: Checkout Repo 168 - uses: actions/checkout@v3 168 + uses: actions/checkout@v4 169 169 with: 170 170 fetch-depth: 0 171 171 172 172 - name: Setup Node 173 - uses: actions/setup-node@v3 173 + uses: actions/setup-node@v4 174 174 with: 175 175 node-version: 18 176 176 177 177 - name: Setup pnpm 178 - uses: pnpm/action-setup@v2.2.4 178 + uses: pnpm/action-setup@v3 179 179 with: 180 180 version: 8 181 181 run_install: false ··· 185 185 run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 186 186 187 187 - name: Use pnpm store 188 - uses: actions/cache@v3 188 + uses: actions/cache@v4 189 189 id: pnpm-cache 190 190 with: 191 191 path: |
+5 -5
.github/workflows/release.yml
··· 18 18 pull-requests: write 19 19 steps: 20 20 - name: Checkout Repo 21 - uses: actions/checkout@v3 21 + uses: actions/checkout@v4 22 22 with: 23 23 fetch-depth: 0 24 24 25 25 - name: Setup Node 26 - uses: actions/setup-node@v3 26 + uses: actions/setup-node@v4 27 27 with: 28 28 node-version: 18 29 29 30 30 - name: Setup pnpm 31 - uses: pnpm/action-setup@v2.2.4 31 + uses: pnpm/action-setup@v3 32 32 with: 33 33 version: 8 34 34 run_install: false ··· 38 38 run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT 39 39 40 40 - name: Use pnpm store 41 - uses: actions/cache@v3 41 + uses: actions/cache@v4 42 42 id: pnpm-cache 43 43 with: 44 44 path: | ··· 53 53 54 54 - name: PR or Publish 55 55 id: changesets 56 - uses: changesets/action@v1.4.5 56 + uses: changesets/action@v1.4.6 57 57 with: 58 58 version: pnpm changeset:version 59 59 publish: pnpm changeset:publish