Skip to content

Commit 01d0c08

Browse files
authored
Update dependencies + add “Studio Pricing” to global nav (#624)
1 parent 9890695 commit 01d0c08

14 files changed

+2052
-1710
lines changed

.github/workflows/ci-cd-production.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
uses: actions/checkout@v4
2424

2525
- name: Log in to GitHub Container Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: ghcr.io
2929
username: ${{ github.actor }}
3030
password: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Build and push Docker image
33-
uses: docker/build-push-action@v4
33+
uses: docker/build-push-action@v5
3434
with:
3535
context: . # required to respect .dockerignore
3636
cache-from: type=registry,ref=${{ env.BASE_IMAGE }}:latest
@@ -50,12 +50,12 @@ jobs:
5050
uses: actions/checkout@v4
5151

5252
- name: Authenticate to GCP
53-
uses: google-github-actions/auth@v1
53+
uses: google-github-actions/auth@v2
5454
with:
5555
credentials_json: ${{ secrets.GCP_THE_GRAPH_PRODUCTION }}
5656

5757
- name: Set up kubectl
58-
uses: google-github-actions/get-gke-credentials@v1
58+
uses: google-github-actions/get-gke-credentials@v2
5959
with:
6060
cluster_name: hosted-service
6161
location: us-central1-a

.github/workflows/ci-cd-pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up env
2222
uses: the-guild-org/shared-config/setup@main
2323
with:
24-
nodeVersion: 18
24+
nodeVersion: 20
2525
packageManager: pnpm
2626

2727
- name: Install dependencies
@@ -31,7 +31,7 @@ jobs:
3131
run: pnpm check
3232

3333
- name: Build Docker image
34-
uses: docker/build-push-action@v4
34+
uses: docker/build-push-action@v5
3535
with:
3636
context: . # required to respect .dockerignore
3737
cache-from: type=registry,ref=${{ env.BASE_IMAGE }}:latest

.github/workflows/ci-cd-staging.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
- name: Check out the repo
2424
uses: actions/checkout@v4
2525

26-
- name: Login to GitHub Container Registry
27-
uses: docker/login-action@v2
26+
- name: Log in to GitHub Container Registry
27+
uses: docker/login-action@v3
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Build and push Docker image
34-
uses: docker/build-push-action@v4
34+
uses: docker/build-push-action@v5
3535
with:
3636
context: . # required to respect .dockerignore
3737
cache-from: type=registry,ref=${{ env.BASE_IMAGE }}:latest
@@ -51,12 +51,12 @@ jobs:
5151
uses: actions/checkout@v4
5252

5353
- name: Authenticate to GCP
54-
uses: google-github-actions/auth@v1
54+
uses: google-github-actions/auth@v2
5555
with:
5656
credentials_json: ${{ secrets.GCP_THE_GRAPH_STAGING }}
5757

5858
- name: Set up kubectl
59-
uses: google-github-actions/get-gke-credentials@v1
59+
uses: google-github-actions/get-gke-credentials@v2
6060
with:
6161
cluster_name: hosted-service
6262
location: us-central1-a

.github/workflows/next-js-bundle-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up env
3030
uses: the-guild-org/shared-config/setup@main
3131
with:
32-
nodeVersion: 18
32+
nodeVersion: 20
3333
packageManager: pnpm
3434

3535
- name: Restore Next.js Build

.github/workflows/opengraph.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up env
2727
uses: the-guild-org/shared-config/setup@main
2828
with:
29-
nodeVersion: 18
29+
nodeVersion: 20
3030
packageManager: pnpm
3131

3232
- name: Deploy

.github/workflows/website-integrity.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up env
2424
uses: the-guild-org/shared-config/setup@main
2525
with:
26-
nodeVersion: 18
26+
nodeVersion: 20
2727
packageManager: pnpm
2828

2929
- name: Build Site

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:18-alpine as builder
1+
FROM node:20-alpine as builder
22

33
ARG ENVIRONMENT
44
ENV ENVIRONMENT=$ENVIRONMENT
55

66
ENV PNPM_HOME="/usr/bin"
77

88
RUN apk add --no-cache git
9-
RUN npm install -g pnpm@8.10.0
9+
RUN npm install -g pnpm@8.15.5
1010

1111
WORKDIR /app
1212

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "the-graph-docs-monorepo",
33
"private": true,
4-
"packageManager": "pnpm@8.10.0",
4+
"packageManager": "pnpm@8.15.5",
55
"scripts": {
66
"build": "NODE_OPTIONS='--max_old_space_size=4096' turbo run build",
77
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
@@ -33,8 +33,8 @@
3333
"remark-lint-heading-increment": "^3.1.2",
3434
"remark-lint-no-heading-punctuation": "^3.1.2",
3535
"remark-lint-restrict-elements": "workspace:*",
36-
"turbo": "^1.12.5",
37-
"typescript": "^5.4.2"
36+
"turbo": "^1.13.0",
37+
"typescript": "^5.4.3"
3838
},
3939
"lint-staged": {
4040
"**/*.{js,jsx,ts,tsx,mjs,cjs}": "eslint --fix",

packages/nextra-theme/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
"react-use": "^17.5.0"
4444
},
4545
"devDependencies": {
46-
"@edgeandnode/gds": "^5.2.0-next-1710434420674-0b3ac10436d3c3f69814fdbe0814a0e35493864a",
47-
"@edgeandnode/go": "^6.2.0-next-1710434420674-0b3ac10436d3c3f69814fdbe0814a0e35493864a",
46+
"@edgeandnode/gds": "^5.3.0",
47+
"@edgeandnode/go": "^6.4.0",
4848
"@emotion/react": "^11.11.4",
4949
"@types/lodash": "^4.17.0",
50-
"@types/react": "^18.2.66",
50+
"@types/react": "^18.2.71",
5151
"@types/react-dom": "^18.2.22",
52-
"next": "^14.1.3",
52+
"next": "^14.1.4",
5353
"next-seo": "^6.5.0",
5454
"nextra": "^2.13.4",
5555
"react": "^18.2.0",

packages/og-image/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
"test": "vitest run"
1111
},
1212
"dependencies": {
13-
"@resvg/resvg-wasm": "2.6.0",
13+
"@resvg/resvg-wasm": "2.6.2",
1414
"react": "18.2.0",
1515
"satori": "0.10.13",
1616
"yoga-wasm-web": "0.3.3"
1717
},
1818
"devDependencies": {
19-
"@cloudflare/workers-types": "^4.20240222.0",
20-
"@types/react": "^18.2.61",
19+
"@cloudflare/workers-types": "^4.20240320.1",
20+
"@types/react": "^18.2.71",
2121
"jest-image-snapshot": "^6.4.0",
2222
"tsx": "^4.7.1",
23-
"typescript": "^5.3.3",
23+
"typescript": "^5.4.3",
2424
"vitest": "^0.34.6",
25-
"wrangler": "^3.30.1"
25+
"wrangler": "^3.37.0"
2626
}
2727
}

0 commit comments

Comments
 (0)