Skip to content

Commit 842a468

Browse files
Chore: Update all dependencies
1 parent 23bf136 commit 842a468

File tree

12 files changed

+1257
-593
lines changed

12 files changed

+1257
-593
lines changed

.github/workflows/biome-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Checkout the repository so the workflow has access to the code
1717
- name: Checkout code
18-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919

2020
# Run the run-biome.sh script
2121
- name: Run run-biome.sh

.github/workflows/build-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
lighthouseci:
3333
if: github.event.pull_request
3434
needs: deploy-example-site
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-24.04
3636
steps:
3737
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3838
with:
3939
ref: ${{ github.event.workflow_run.head_branch }}
40-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
40+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
4141
with:
42-
node-version: 22
42+
node-version: 24
4343
- name: Installing packages
4444
run: cd performance && npm ci
4545
- name: Generating lighthouse reports for PR...
@@ -116,7 +116,7 @@ jobs:
116116
fi
117117
fi
118118
done
119-
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
119+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
120120
if: ${{ !cancelled() }}
121121
with:
122122
name: lighthouse-reports-pr

.github/workflows/commit-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check Commit Messages
15-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
15+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1616
with:
1717
script: |
1818
const excludedBotIds = [
@@ -86,7 +86,7 @@ jobs:
8686
}
8787
8888
- name: Create PR comment on bad commit message
89-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
89+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
9090
if: ${{ failure() && !github.event.pull_request.draft }}
9191
with:
9292
script: |

.github/workflows/example-site-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
environment:
2626
name: example-site
2727
url: ${{ steps.deploy.outputs.page_url }}
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- name: Setup Go
3131
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 #v6.0.0

.github/workflows/fossa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
if: ${{ github.event.repository.fork == false }}
2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
25+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626

2727
- name: Scan
28-
uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0
28+
uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0
2929
with:
3030
api-key: ${{ secrets.FOSSA_TOKEN }}

.github/workflows/lighthouse.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ env:
1313
FRONT_DOOR_PASSWORD: ${{ secrets.FRONT_DOOR_PASSWORD }}
1414
jobs:
1515
generate-lighthouse-report:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919
with:
2020
ref: ${{ github.event.workflow_run.head_branch }}
21-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
21+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2222
with:
23-
node-version: 18
23+
node-version: 24
2424
- name: Installing packages
2525
run: cd performance && npm ci
2626
- name: Get PR number being merged
@@ -41,7 +41,7 @@ jobs:
4141
GITHUB_PR_NUMBER: ${{ env.GITHUB_PR_NUMBER }}
4242
run: |
4343
node performance/lighthouse-script.js
44-
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
44+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4545
with:
4646
name: lighthouse-reports-main
4747
path: lighthouse-reports/main-report.json

.github/workflows/mend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-24.04
2222
steps:
2323
- name: Checkout Repository
24-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
2626
ref: ${{ inputs.branch && inputs.branch || github.ref }}
2727

.github/workflows/nginx-documentation-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
git clone https://github.com/nginx/documentation.git docs
2222
2323
- name: Setup Go
24-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
24+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2525
with:
2626
go-version: ">=1.23"
2727

.github/workflows/playwright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Checkout the repository so the workflow has access to the code
1919
- name: Checkout code
20-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
- name: Setup Hugo
2222
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0
2323
with:
@@ -33,15 +33,15 @@ jobs:
3333
echo "Playwright tests failed. Please view the Playwright report to see full error."
3434
exit 1
3535
fi
36-
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
36+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3737
id: artifact-upload
3838
if: ${{ !cancelled() && failure() && steps.test-ui.conclusion == 'failure' }}
3939
with:
4040
name: playwright-report
4141
path: tests/playwright-report/
4242
retention-days: 3
4343
- name: Comment on PR with Playwright report
44-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
44+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4545
if: ${{ failure() }}
4646
with:
4747
script: |

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
33
"root": true,
44
"vcs": {
55
"enabled": true,

0 commit comments

Comments
 (0)