Skip to content

Commit 7ee1564

Browse files
committed
Merge remote-tracking branch 'origin/master' into audit-netlify
2 parents c1f51fc + 01fd0b7 commit 7ee1564

18 files changed

+798
-404
lines changed

.github/workflows/backup-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout master branch
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
ref: master
3333
fetch-depth: 0 # Required to push to another branch

.github/workflows/build-and-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Set up Node.js
3939
uses: actions/setup-node@v6
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: Upload JSDoc results
8282
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v6
8484
with:
8585
name: jsdoc-lint-results
8686
path: jsdoc-lint-output.txt
@@ -95,7 +95,7 @@ jobs:
9595
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
9696

9797
- name: Upload source archive
98-
uses: actions/upload-artifact@v5
98+
uses: actions/upload-artifact@v6
9999
with:
100100
name: clean-source
101101
path: clean-source.tar.gz
@@ -108,7 +108,7 @@ jobs:
108108

109109
steps:
110110
- name: Download clean source archive
111-
uses: actions/download-artifact@v5
111+
uses: actions/download-artifact@v7
112112
with:
113113
name: clean-source
114114
path: ./
@@ -164,7 +164,7 @@ jobs:
164164

165165
steps:
166166
- name: Download clean source archive
167-
uses: actions/download-artifact@v5
167+
uses: actions/download-artifact@v7
168168
with:
169169
name: clean-source
170170
path: ./

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: 'Checkout Repository'
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: 'Dependency Review'
2424
uses: actions/dependency-review-action@v4

.github/workflows/lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout Repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Authenticate GitHub CLI
3737
run: gh auth status

.github/workflows/meta-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repo
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Set up Node.js
2929
uses: actions/setup-node@v6

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Log ENV_MODE
3232
run: 'echo "ENV_MODE is set to: $ENV_MODE"'

.github/workflows/probely-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
echo "✅ Report saved as probely-scan-coverage.csv"
110110
111111
- name: Upload report artifact
112-
uses: actions/upload-artifact@v5
112+
uses: actions/upload-artifact@v6
113113
with:
114114
name: probely-scan-coverage
115115
path: probely-scan-coverage.csv

.github/workflows/publish-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Set up Node.js
3737
uses: actions/setup-node@v6
@@ -79,7 +79,7 @@ jobs:
7979
8080
- name: Upload JSDoc results
8181
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v6
8383
with:
8484
name: jsdoc-lint-results
8585
path: jsdoc-lint-output.txt
@@ -94,7 +94,7 @@ jobs:
9494
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
9595

9696
- name: Upload source archive
97-
uses: actions/upload-artifact@v5
97+
uses: actions/upload-artifact@v6
9898
with:
9999
name: clean-source
100100
path: clean-source.tar.gz
@@ -107,7 +107,7 @@ jobs:
107107

108108
steps:
109109
- name: Download clean source archive
110-
uses: actions/download-artifact@v5
110+
uses: actions/download-artifact@v7
111111
with:
112112
name: clean-source
113113
path: ./
@@ -168,7 +168,7 @@ jobs:
168168

169169
steps:
170170
- name: Download clean source archive
171-
uses: actions/download-artifact@v5
171+
uses: actions/download-artifact@v7
172172
with:
173173
name: clean-source
174174
path: ./

.github/workflows/secret-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# ---------------------------------------------------------------------
2828
# Checkout the full repo history (needed for Gitleaks to scan all commits)
2929
# ---------------------------------------------------------------------
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333

@@ -50,7 +50,7 @@ jobs:
5050
# ---------------------------------------------------------------------
5151
- name: Upload Gitleaks Report
5252
if: always() && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v6
5454
with:
5555
name: gitleaks-report
5656
path: gitleaks-report.json

.github/workflows/templates/publish.template.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
- name: Set up Node.js
4747
uses: actions/setup-node@v6
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Upload JSDoc results
8686
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v6
8888
with:
8989
name: jsdoc-lint-results
9090
path: jsdoc-lint-output.txt
@@ -99,7 +99,7 @@ jobs:
9999
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
100100

101101
- name: Upload source archive
102-
uses: actions/upload-artifact@v5
102+
uses: actions/upload-artifact@v6
103103
with:
104104
name: clean-source
105105
path: clean-source.tar.gz
@@ -112,7 +112,7 @@ jobs:
112112

113113
steps:
114114
- name: Download clean source archive
115-
uses: actions/download-artifact@v5
115+
uses: actions/download-artifact@v7
116116
with:
117117
name: clean-source
118118
path: ./
@@ -168,7 +168,7 @@ jobs:
168168

169169
steps:
170170
- name: Download clean source archive
171-
uses: actions/download-artifact@v5
171+
uses: actions/download-artifact@v7
172172
with:
173173
name: clean-source
174174
path: ./

0 commit comments

Comments
 (0)