Skip to content

Commit 0749fcd

Browse files
committed
chore(ci): update actions
Took 7 minutes
1 parent a5eca28 commit 0749fcd

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/actions/setup-node-pnpm/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ runs:
1111
using: composite
1212
steps:
1313
- name: setup pnpm
14-
uses: pnpm/action-setup@v4
14+
uses: pnpm/action-setup@v5
1515

1616
- name: setup node
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v6
1818
with:
1919
cache: pnpm
2020
node-version: 22
2121

2222
- name: cache sharp output
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
if: ${{ inputs.build-cache == 'true' }}
2525
with:
2626
path: node_modules/.astro/assets

.github/workflows/build-preview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: "Build Preview Site and Upload Build Artifact"
1111
steps:
1212
- name: "checkout"
13-
uses: "actions/checkout@v4"
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
ref: ${{ github.event.pull_request.head.ref }}
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626
- name: "upload build artifact"
27-
uses: "actions/upload-artifact@v4"
27+
uses: actions/upload-artifact@v7
2828
with:
2929
name: "preview-build"
3030
path: "dist"

.github/workflows/deploy-preview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
name: "Deploy Preview to Cloudflare Pages"
2020
steps:
2121
- name: "Download build artifact"
22-
uses: "actions/download-artifact@v4"
22+
uses: actions/download-artifact@v8
2323
id: "preview-build-artifact"
2424
with:
2525
name: "preview-build"
2626
path: "dist"
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
run-id: ${{ github.event.workflow_run.id }}
2929
- name: "Deploy to Cloudflare Pages"
30-
uses: "AdrianGonz97/refined-cf-pages-action@v1"
30+
uses: AdrianGonz97/refined-cf-pages-action@v1
3131
with:
3232
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
3333
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: write
1616
steps:
1717
- name: "checkout"
18-
uses: "actions/checkout@v4"
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
- name: "setup node and pnpm"
@@ -28,7 +28,7 @@ jobs:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
- name: "publish (push)"
3030
id: "cloudflare-publish"
31-
uses: "AdrianGonz97/refined-cf-pages-action@v1"
31+
uses: AdrianGonz97/refined-cf-pages-action@v1
3232
with:
3333
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
3434
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

.github/workflows/format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: "setup node and pnpm"
1717
uses: ./.github/actions/setup-node-pnpm
1818
with:

.github/workflows/spellcheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Spell check
1717
uses: crate-ci/typos@v1.38.1

0 commit comments

Comments
 (0)