Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion classroom/student-progression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Unlock Next Step
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const eventName = context.eventName;
Expand Down
4 changes: 2 additions & 2 deletions scripts/classroom/Add-AutograderSafeguards.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ if ($tpl -notmatch 'Post workflow error notice') {
$lf +
' - name: Post workflow error notice' + $lf +
' if: failure()' + $lf +
' uses: actions/github-script@v7' + $lf +
' uses: actions/github-script@v8' + $lf +
' with:' + $lf +
' script: |' + $lf +
" const MARKER = '## Challenge 14:';" + $lf +
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:

steps:
- name: Find PR and post notice if needed
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const run = context.payload.workflow_run;
Expand Down
2 changes: 1 addition & 1 deletion scripts/classroom/Fix-AutograderComments.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ foreach ($c in $challenges) {
$lf +
' - name: Post workflow error notice' + $lf +
' if: failure()' + $lf +
' uses: actions/github-script@v7' + $lf +
' uses: actions/github-script@v8' + $lf +
' with:' + $lf +
' script: |' + $lf +
" const MARKER = '## Challenge " + $num + ":';" + $lf +
Expand Down
Loading