Skip to content

Commit 5c3d395

Browse files
committed
chore: upgrade GitHub Actions versions and @types/react dependency
- Update actions/checkout to v6 in pages, security, and typecheck workflows - Upgrade actions/download-artifact to v7 - Update actions/configure-pages to v5 - Bump trufflesecurity/trufflehog to v3.92.5 - Update @types/react from 18.3.3 to 18.3.27
1 parent 34e9677 commit 5c3d395

File tree

6 files changed

+55
-166
lines changed

6 files changed

+55
-166
lines changed

.github/workflows/pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
changelog: ${{ steps.changelog.outputs.changelog }}
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333
persist-credentials: false
@@ -68,12 +68,12 @@ jobs:
6868
url: ${{ steps.deployment.outputs.page_url }}
6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v6
7272
with:
7373
persist-credentials: false
7474

7575
- name: Download changelog artifact
76-
uses: actions/download-artifact@v4
76+
uses: actions/download-artifact@v7
7777
with:
7878
name: changelog
7979
path: docs/
@@ -88,12 +88,12 @@ jobs:
8888
run: bun run build
8989

9090
- name: Setup Pages
91-
uses: actions/configure-pages@v4
91+
uses: actions/configure-pages@v5
9292
with:
9393
static_site_generator: none
9494

9595
- name: Upload artifact
96-
uses: actions/upload-pages-artifact@v3
96+
uses: actions/upload-pages-artifact@v4
9797
with:
9898
path: docs/
9999

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1919

2020
- name: Setup Bun
2121
uses: oven-sh/setup-bun@v1
@@ -27,7 +27,7 @@ jobs:
2727
run: bun audit --audit-level=high
2828

2929
- name: Scan for Secrets
30-
uses: trufflesecurity/trufflehog@v3.90.1
30+
uses: trufflesecurity/trufflehog@v3.92.5
3131
with:
3232
path: ./
3333
baseRef: ${{ github.event.pull_request.base.ref || github.ref }}

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v6
1717

1818
- name: Setup Bun
1919
uses: oven-sh/setup-bun@v1

0 commit comments

Comments
 (0)