Skip to content
Open
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 .github/workflows/ConsistencyCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ModelCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Create PR comment
if: ${{ steps.find-pull-request.outputs.number > 0}} #only makes sense if we have a PR for the branch
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
await github.rest.issues.createComment({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Check for related Pull Requests
id: linked_prs
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
result-encoding: string
script: |
Expand All @@ -49,7 +49,7 @@ jobs:
$prList = $env:jsVar | ConvertFrom-Json
echo "::set-output name=count::$($prList.length)"

- uses: actions/checkout@v2
- uses: actions/checkout@v3
if: ${{ steps.checkNumber.outputs.count > 0}}
with:
lfs: true
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

- name: CreateComments
if: ${{ steps.checkNumber.outputs.count > 0}}
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
const prList = JSON.parse(`${{steps.WorkOnPr.outputs.result}}`)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publishReviewSession.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Create sessionfile name
id: session_file
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Post new model comment to PR
if: steps.baseDownload.outputs.result == 'notFound'
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
await github.rest.issues.createComment({
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

- name: Create PR comment
if: steps.baseDownload.outputs.result == 'downloaded'
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
await github.rest.issues.createComment({
Expand Down