Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
Expand All @@ -27,7 +27,7 @@ jobs:
needs: build-frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: workspace
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:


steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: workspace
Expand All @@ -103,7 +103,7 @@ jobs:
needs: [test-frontend, test-backend]
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Enable auto-merge
run: gh pr merge --auto --merge "$PR_URL"
env:
Expand All @@ -123,7 +123,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Hatch
run: pip install hatch
- uses: actions/download-artifact@v6
Expand Down
Loading