Skip to content

Commit

Permalink
Update dependencies + add “Studio Pricing” to global nav (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
benface authored Mar 26, 2024
1 parent 9890695 commit 01d0c08
Show file tree
Hide file tree
Showing 14 changed files with 2,052 additions and 1,710 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
uses: actions/checkout@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

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

- name: Authenticate to GCP
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_THE_GRAPH_PRODUCTION }}

- name: Set up kubectl
uses: google-github-actions/get-gke-credentials@v1
uses: google-github-actions/get-gke-credentials@v2
with:
cluster_name: hosted-service
location: us-central1-a
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 18
nodeVersion: 20
packageManager: pnpm

- name: Install dependencies
Expand All @@ -31,7 +31,7 @@ jobs:
run: pnpm check

- name: Build Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: . # required to respect .dockerignore
cache-from: type=registry,ref=${{ env.BASE_IMAGE }}:latest
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v4

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

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

- name: Authenticate to GCP
uses: google-github-actions/auth@v1
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_THE_GRAPH_STAGING }}

- name: Set up kubectl
uses: google-github-actions/get-gke-credentials@v1
uses: google-github-actions/get-gke-credentials@v2
with:
cluster_name: hosted-service
location: us-central1-a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next-js-bundle-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 18
nodeVersion: 20
packageManager: pnpm

- name: Restore Next.js Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opengraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 18
nodeVersion: 20
packageManager: pnpm

- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@main
with:
nodeVersion: 18
nodeVersion: 20
packageManager: pnpm

- name: Build Site
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:18-alpine as builder
FROM node:20-alpine as builder

ARG ENVIRONMENT
ENV ENVIRONMENT=$ENVIRONMENT

ENV PNPM_HOME="/usr/bin"

RUN apk add --no-cache git
RUN npm install -g pnpm@8.10.0
RUN npm install -g pnpm@8.15.5

WORKDIR /app

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "the-graph-docs-monorepo",
"private": true,
"packageManager": "pnpm@8.10.0",
"packageManager": "pnpm@8.15.5",
"scripts": {
"build": "NODE_OPTIONS='--max_old_space_size=4096' turbo run build",
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
Expand Down Expand Up @@ -33,8 +33,8 @@
"remark-lint-heading-increment": "^3.1.2",
"remark-lint-no-heading-punctuation": "^3.1.2",
"remark-lint-restrict-elements": "workspace:*",
"turbo": "^1.12.5",
"typescript": "^5.4.2"
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs,cjs}": "eslint --fix",
Expand Down
8 changes: 4 additions & 4 deletions packages/nextra-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"react-use": "^17.5.0"
},
"devDependencies": {
"@edgeandnode/gds": "^5.2.0-next-1710434420674-0b3ac10436d3c3f69814fdbe0814a0e35493864a",
"@edgeandnode/go": "^6.2.0-next-1710434420674-0b3ac10436d3c3f69814fdbe0814a0e35493864a",
"@edgeandnode/gds": "^5.3.0",
"@edgeandnode/go": "^6.4.0",
"@emotion/react": "^11.11.4",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.66",
"@types/react": "^18.2.71",
"@types/react-dom": "^18.2.22",
"next": "^14.1.3",
"next": "^14.1.4",
"next-seo": "^6.5.0",
"nextra": "^2.13.4",
"react": "^18.2.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/og-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
"test": "vitest run"
},
"dependencies": {
"@resvg/resvg-wasm": "2.6.0",
"@resvg/resvg-wasm": "2.6.2",
"react": "18.2.0",
"satori": "0.10.13",
"yoga-wasm-web": "0.3.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240222.0",
"@types/react": "^18.2.61",
"@cloudflare/workers-types": "^4.20240320.1",
"@types/react": "^18.2.71",
"jest-image-snapshot": "^6.4.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript": "^5.4.3",
"vitest": "^0.34.6",
"wrangler": "^3.30.1"
"wrangler": "^3.37.0"
}
}
Loading

0 comments on commit 01d0c08

Please sign in to comment.