Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"version": "lts"
},
"ghcr.io/devcontainers/features/go:1": {
"version": "latest"
"version": "1.25"
},
"ghcr.io/devcontainers/features/hugo:1": {
"version": "latest"
"version": "0.151.0"
},
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
Expand Down
92 changes: 92 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
version: 2
updates:
# Root package.json
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 10
groups:
aws-sdk:
patterns: ["@aws-sdk/*"]
pulumi:
patterns: ["@pulumi/*"]
testing:
patterns: ["cypress", "jest*", "@types/jest"]
development:
patterns: ["prettier", "husky", "markdownlint"]
ignore:
- dependency-name: "tailwindcss"
labels: ["dependencies", "npm"]
commit-message:
prefix: "deps"
include: "scope"

# Theme package.json
- package-ecosystem: "npm"
directory: "/theme"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 10
groups:
webpack:
patterns: ["webpack*", "*-loader", "*-webpack-plugin*"]
algolia:
patterns: ["@algolia/*", "algoliasearch"]
ignore:
- dependency-name: "tailwindcss"
labels: ["dependencies", "npm", "theme"]
commit-message:
prefix: "deps(theme)"
include: "scope"

# Stencil package.json
- package-ecosystem: "npm"
directory: "/theme/stencil"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 5
groups:
stencil:
patterns: ["@stencil/*"]
testing:
patterns: ["jest*", "puppeteer"]
labels: ["dependencies", "npm", "stencil"]
commit-message:
prefix: "deps(stencil)"
include: "scope"

# Infrastructure package.json
- package-ecosystem: "npm"
directory: "/infrastructure"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 5
groups:
pulumi:
patterns: ["@pulumi/*"]
labels: ["dependencies", "npm", "infrastructure"]
commit-message:
prefix: "deps(infra)"
include: "scope"

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 5
labels: ["dependencies", "github-actions"]
commit-message:
prefix: "ci"
include: "scope"
2 changes: 1 addition & 1 deletion .github/workflows/bucket-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.20.x
go-version: 1.25.x

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.20.x
go-version: 1.25.x

- uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true

- name: Configure AWS Credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true
- name: Run make check_links
run: make check_links
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-search-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true

- uses: algolia/setup-algolia-cli@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/esc-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true
- name: Install node
uses: actions/setup-node@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.20.x
go-version: 1.25.x

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true

- name: Configure AWS Credentials
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pulumi-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true
- name: Install node
uses: actions/setup-node@v2
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
dotnetversion:
- 3.1.301
goversion:
- 1.16.x
- 1.25.x
pythonversion:
- "3.13"
nodeversion:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.135.0"
hugo-version: "0.151.0"
extended: true

- name: Install Pulumi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-upgrade-programs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.135.0"
hugo-version: "0.151.0"
extended: true

- name: Install Pulumi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.20.x
go-version: 1.25.x

- uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.135.0'
hugo-version: '0.151.0'
extended: true

- name: Configure AWS Credentials
Expand Down
32 changes: 32 additions & 0 deletions .markdownlint-base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"default": true,
"MD033": false,
"MD013": false,
"MD040": false,
"MD010": false,
"MD026": false,
"MD014": false,
"MD046": false,
"MD007": false,
"MD024": false,
"MD023": false,
"MD028": false,
"MD034": false,
"MD036": false,
"MD001": false,
"MD027": false,
"MD032": false,
"MD037": false,
"MD039": false,
"MD045": false,
"MD049": false,
"MD050": false,
"MD051": false,
"MD052": false,
"MD053": false,
"MD055": false,
"MD056": false,
"MD058": false,
"MD059": false,
"MD060": false
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
22
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ See also:

We build the Pulumi website with Hugo, manage our dependencies with Node.js and Yarn, and write our documentation in Markdown. Below is a list of the tools you'll need if you'd like to work on the website (e.g., to contribute docs content, a blog post, etc.):

* [Hugo](https://gohugo.io/installation/) (>= 0.126.0)
* Hugo 0.126.0 is highly recommended. This is the version we use in our deployment pipelines.
* [Node.js](https://nodejs.org/en/download/package-manager) (>= 18)
* [Hugo](https://gohugo.io/installation/) (>= 0.151.0)
* Hugo 0.151.0 is highly recommended. This is the version we use in our deployment pipelines.
* [Node.js](https://nodejs.org/en/download/package-manager) (>= 22)
* [Yarn](https://classic.yarnpkg.com/lang/en/docs/install) (1.x)

Additionally, to build the SDK and CLI documentation, you'll also need:

* [Go](https://golang.org/) (>= 1.21)
* [Go](https://golang.org/) (>= 1.25)
* [Python](https://www.python.org) (>= 3.7)
* [.NET](https://dotnet.microsoft.com/download) (>= 6)
* [Pulumi](https://www.pulumi.com/docs/install)
Expand Down
1 change: 1 addition & 0 deletions config/_default/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ security:
funcs:
getenv:
- ASSET_BUNDLE_ID
- CSS_BUNDLE_ID
- PULUMI_CONVERT_URL
- PULUMI_AI_WS_URL
- PULUMI_ATLAS_URL
Expand Down
3 changes: 3 additions & 0 deletions content/docs/.markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../.markdownlint-base.json"
}
Loading
Loading