diff --git a/src/content/docs/en/guides/deploy/aws.mdx b/src/content/docs/en/guides/deploy/aws.mdx index a5198fd237b8d..e4daad6d28fc3 100644 --- a/src/content/docs/en/guides/deploy/aws.mdx +++ b/src/content/docs/en/guides/deploy/aws.mdx @@ -332,7 +332,7 @@ There are many ways to set up continuous deployment for AWS. One possibility for runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 with: diff --git a/src/content/docs/en/guides/deploy/deno.mdx b/src/content/docs/en/guides/deploy/deno.mdx index f4fad30ebc9cb..2597a816fdc36 100644 --- a/src/content/docs/en/guides/deploy/deno.mdx +++ b/src/content/docs/en/guides/deploy/deno.mdx @@ -201,7 +201,7 @@ If your project is stored on GitHub, the [Deno Deploy website](https://dash.deno steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Not using npm? Change `npm ci` to `yarn install` or `pnpm i` - name: Install dependencies @@ -238,7 +238,7 @@ If your project is stored on GitHub, the [Deno Deploy website](https://dash.deno steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Not using npm? Change `npm ci` to `yarn install` or `pnpm i` - name: Install dependencies diff --git a/src/content/docs/en/guides/deploy/github.mdx b/src/content/docs/en/guides/deploy/github.mdx index 1d56bba43d2d6..a9af893c78cb9 100644 --- a/src/content/docs/en/guides/deploy/github.mdx +++ b/src/content/docs/en/guides/deploy/github.mdx @@ -43,9 +43,9 @@ Follow the instructions below to use the GitHub Action to deploy your Astro site runs-on: ubuntu-latest steps: - name: Checkout your repository using git - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install, build, and upload your site - uses: withastro/action@v5 + uses: withastro/action@v6 # with: # path: . # The root location of your Astro project inside the repository. (optional) # node-version: 24 # The specific version of Node that should be used to build your site. Defaults to 22. (optional) @@ -63,7 +63,7 @@ Follow the instructions below to use the GitHub Action to deploy your Astro site steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 ``` The Astro action can be configured with optional inputs. Provide these by uncommenting the `with:` line and the input you want to use. diff --git a/src/content/docs/en/guides/deploy/juno.mdx b/src/content/docs/en/guides/deploy/juno.mdx index 8558a08e2b00f..f0fb4eb3f1a09 100644 --- a/src/content/docs/en/guides/deploy/juno.mdx +++ b/src/content/docs/en/guides/deploy/juno.mdx @@ -82,9 +82,9 @@ You can deploy using either GitHub Actions or CLI (command line interface). runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 24 registry-url: "https://registry.npmjs.org"