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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run:
working-directory: apps/orchestrator
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# gitleaks scans the pushed commit range; a shallow clone can't walk it
# (surfaces as "failed to scan Git repository: stderr is not empty").
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
# before anything else works. Exercise them on the OS they target.
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run:
working-directory: apps/orchestrator
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
Expand All @@ -167,7 +167,7 @@ jobs:
run:
working-directory: apps/dashboard
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: "20"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
build-mode: none

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run:
working-directory: apps/orchestrator
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
Expand All @@ -64,7 +64,7 @@ jobs:
needs: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
Expand Down
Loading