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
4 changes: 2 additions & 2 deletions src/content/docs/en/guides/deploy/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ There are many ways to set up continuous deployment for AWS. One possibility for
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v6
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
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 @@ -200,7 +200,7 @@ If your project is stored on GitHub, the [Deno Deploy website](https://dash.deno

steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Not using npm? Change `npm ci` to `pnpm i` or `yarn install`
- name: Install dependencies
Expand Down Expand Up @@ -237,7 +237,7 @@ If your project is stored on GitHub, the [Deno Deploy website](https://dash.deno

steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Not using npm? Change `npm ci` to `pnpm i` or `yarn install`
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/en/guides/deploy/github.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ 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@v6
uses: actions/checkout@v7
- name: Install, build, and upload your site
uses: withastro/action@v6
# with:
Expand Down
Loading