Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/content/docs/en/guides/deploy/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/en/guides/deploy/deno.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/en/guides/deploy/github.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/en/guides/deploy/juno.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading