Skip to content

Commit 46ab181

Browse files
authored
Merge branch 'main' into i18n-ja-typescript-0
2 parents f62366f + 17818ef commit 46ab181

88 files changed

Lines changed: 4611 additions & 1130 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
- name: Setup Node
1111
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
1212
with:
13-
node-version: 24.17.0
13+
node-version: 24.18.0
1414
cache: pnpm
1515

1616
- name: Install dependencies

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
timeout-minutes: 15
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
28+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2929

3030
- name: Install Tools & Dependencies
3131
uses: ./.github/actions/install
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 15
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
41+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4242

4343
- name: Install Tools & Dependencies
4444
uses: ./.github/actions/install
@@ -51,7 +51,7 @@ jobs:
5151
timeout-minutes: 15
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
54+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5555

5656
- name: Install Tools & Dependencies
5757
uses: ./.github/actions/install
@@ -64,7 +64,7 @@ jobs:
6464
timeout-minutes: 15
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
67+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6868

6969
- name: Install Tools & Dependencies
7070
uses: ./.github/actions/install

.github/workflows/contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
17+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1818

1919
- name: Install Tools & Dependencies
2020
uses: ./.github/actions/install

.github/workflows/deploy-lunaria.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ permissions: {}
1313

1414
jobs:
1515
deploy:
16+
if: ${{ github.repository_owner == 'withastro' }}
1617
runs-on: ubuntu-latest
1718
timeout-minutes: 10
1819
permissions:
1920
contents: read
2021
steps:
2122
- name: Checkout
22-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
23+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2324
with:
2425
fetch-depth: 0
2526

.github/workflows/deploy-preview.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ concurrency:
1616
jobs:
1717
deploy-preview:
1818
if: >-
19+
github.repository_owner == 'withastro' &&
1920
github.event.workflow_run.event == 'pull_request' &&
2021
github.event.workflow_run.conclusion == 'success'
2122
runs-on: ubuntu-latest
@@ -24,7 +25,7 @@ jobs:
2425
pull-requests: write
2526
steps:
2627
- name: Download PR metadata
27-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
28+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
2829
with:
2930
name: pr-metadata
3031
run-id: ${{ github.event.workflow_run.id }}
@@ -39,7 +40,7 @@ jobs:
3940
echo "preview_url=$(cat pr-metadata/preview_url)" >> "$GITHUB_OUTPUT"
4041
4142
- name: Comment deployment in progress
42-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
43+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4344
with:
4445
script: |
4546
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);
@@ -74,7 +75,7 @@ jobs:
7475
}
7576
7677
- name: Download build output
77-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
78+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7879
with:
7980
name: build-output
8081
run-id: ${{ github.event.workflow_run.id }}
@@ -90,7 +91,7 @@ jobs:
9091

9192
- name: Comment deployment complete
9293
if: success()
93-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
94+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
9495
with:
9596
script: |
9697
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);
@@ -119,7 +120,7 @@ jobs:
119120
120121
- name: Comment deployment failed
121122
if: failure()
122-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
123+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
123124
with:
124125
script: |
125126
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);

.github/workflows/deploy.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@ env:
1717

1818
jobs:
1919
deploy:
20+
if: ${{ github.repository_owner == 'withastro' }}
2021
runs-on: ubuntu-latest
2122
timeout-minutes: 30
2223
permissions:
2324
contents: read
2425
steps:
2526
- name: Checkout
26-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
27+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2728

2829
- name: Install Tools & Dependencies
2930
uses: ./.github/actions/install
3031

3132
- name: Cache Astro build
32-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
33+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3334
with:
3435
path: |
3536
node_modules/.astro
@@ -55,7 +56,7 @@ jobs:
5556

5657
- name: Upload build output
5758
if: github.event_name == 'pull_request'
58-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
59+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5960
with:
6061
name: build-output
6162
path: |
@@ -83,7 +84,7 @@ jobs:
8384
8485
- name: Upload PR metadata
8586
if: github.event_name == 'pull_request'
86-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
87+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8788
with:
8889
name: pr-metadata
8990
path: pr-metadata/

.github/workflows/discord-congrats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
congrats:
1111
name: congratsbot
1212
if: ${{ github.repository_owner == 'withastro' && github.event.commits[0].message != '[ci] format' }}
13-
uses: withastro/automation/.github/workflows/congratsbot.yml@290b37409535e2a496482b5bf0e4f5f2e4803f84 # v1.0.0
13+
uses: withastro/automation/.github/workflows/congratsbot.yml@8a5969576beae8ae7bdce64167a95237878f4901 # v1.0.1
1414
with:
1515
EMOJIS: '🎉,🎊,🧑‍🚀,🥳,🙌,🚀,<:notworsethanwhatwehadbefore:1020455379353751573>,<:houston_chef:1082696404780200067>,<:houston_uwu:1100481288143650977>'
1616
secrets:

.github/workflows/discord-i18n-ping.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
17+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/format.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ permissions: {}
99

1010
jobs:
1111
format:
12+
if: ${{ github.repository_owner == 'withastro' }}
1213
runs-on: ubuntu-latest
1314
env:
1415
NODE_OPTIONS: "--max_old_space_size=4096"
1516
steps:
1617
- name: Check out code using Git
17-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
18+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1819
with:
1920
ref: ${{ github.head_ref }}
2021
# Needs access to push to main
@@ -24,7 +25,7 @@ jobs:
2425
- name: Format code
2526
run: pnpm run format:ci
2627
- name: Commit changes
27-
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
28+
uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7.2.0
2829
with:
2930
commit_message: '[ci] format'
3031
branch: ${{ github.head_ref }}

.github/workflows/lint-ja-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
timeout-minutes: 15
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
28+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2929

3030
- name: Install Tools & Dependencies
3131
uses: ./.github/actions/install

0 commit comments

Comments
 (0)