Skip to content

Commit cf734fd

Browse files
docs: bump 'actions/checkout' to latest released version 7 (#14128)
Co-authored-by: Armand Philippot <git@armand.philippot.eu>
1 parent b9e50f9 commit cf734fd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/content/docs/en/guides/deploy/aws.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ There are many ways to set up continuous deployment for AWS. One possibility for
332332
runs-on: ubuntu-latest
333333
steps:
334334
- name: Checkout
335-
uses: actions/checkout@v6
335+
uses: actions/checkout@v7
336336
- name: Configure AWS Credentials
337-
uses: aws-actions/configure-aws-credentials@v1
337+
uses: aws-actions/configure-aws-credentials@v6
338338
with:
339339
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
340340
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

src/content/docs/en/guides/deploy/deno.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ If your project is stored on GitHub, the [Deno Deploy website](https://dash.deno
200200

201201
steps:
202202
- name: Clone repository
203-
uses: actions/checkout@v6
203+
uses: actions/checkout@v7
204204

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

238238
steps:
239239
- name: Clone repository
240-
uses: actions/checkout@v6
240+
uses: actions/checkout@v7
241241

242242
# Not using npm? Change `npm ci` to `pnpm i` or `yarn install`
243243
- name: Install dependencies

src/content/docs/en/guides/deploy/github.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Follow the instructions below to use the GitHub Action to deploy your Astro site
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout your repository using git
46-
uses: actions/checkout@v6
46+
uses: actions/checkout@v7
4747
- name: Install, build, and upload your site
4848
uses: withastro/action@v6
4949
# with:

0 commit comments

Comments
 (0)