Skip to content

Commit 5dafe79

Browse files
chore: update actions/github-script and actions/upload-pages-artifact
1 parent d4ee228 commit 5dafe79

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/configure-pages@v6
4343

4444
- name: Upload artifact
45-
uses: actions/upload-pages-artifact@v4
45+
uses: actions/upload-pages-artifact@v5
4646
with:
4747
# Upload the website folder
4848
path: "./website"

.github/workflows/module-submission-bot.yml

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

3232
- name: Parse issue and validate
3333
id: parse
34-
uses: actions/github-script@v8
34+
uses: actions/github-script@v9
3535
with:
3636
script: |
3737
const fs = require('fs');
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Create Pull Request
105105
if: steps.parse.outputs.valid == 'true'
106-
uses: actions/github-script@v8
106+
uses: actions/github-script@v9
107107
with:
108108
script: |
109109
const fs = require('fs');

.github/workflows/validate-module-submission.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
6666

6767
- name: Generate validation report
68-
uses: actions/github-script@v8
68+
uses: actions/github-script@v9
6969
with:
7070
script: |
7171
const fs = require('fs');
@@ -185,7 +185,7 @@ jobs:
185185
steps:
186186
- name: Check if user is in trusted-contributors team
187187
id: check-trusted
188-
uses: actions/github-script@v8
188+
uses: actions/github-script@v9
189189
with:
190190
script: |
191191
const author = context.payload.pull_request.user.login;

0 commit comments

Comments
 (0)