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
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -40,14 +40,14 @@ jobs:

- name: 🏗️ Set up Node.js (for JavaScript/TypeScript analysis)
if: matrix.language == 'javascript-typescript'
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
cache-dependency-path: frontend/package-lock.json

- name: 🔍 Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-and-quality
Expand All @@ -61,6 +61,6 @@ jobs:
run: cd frontend && npm ci

- name: 🔍 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
10 changes: 5 additions & 5 deletions .github/workflows/dev-backend-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -30,7 +30,7 @@ jobs:
- test
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -44,7 +44,7 @@ jobs:
run: ./gradlew --stacktrace backend:jar backend:bootJar

- name: 🗄️ Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: backend
path: backend/build/libs/*.jar
Expand All @@ -60,12 +60,12 @@ jobs:
packages: write
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

- name: 🗄️ Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: backend
path: backend/build/libs/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/dev-frontend-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

- name: 🏗️ Install Node.js 22.x
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
Expand All @@ -34,12 +34,12 @@ jobs:
- test
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

- name: 🏗️ Install Node.js 22.x
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
Expand All @@ -52,7 +52,7 @@ jobs:
run: cd frontend && npm run build

- name: 🗄️ Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: frontend
path: frontend/dist/*
Expand All @@ -68,12 +68,12 @@ jobs:
packages: write
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

- name: 🗄️ Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: frontend
path: frontend/dist/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🔍️ Check for rebased branches
uses: motlin/forbid-merge-commits-action@v1.0.6
uses: motlin/forbid-merge-commits-action@v1.0.7
with:
fail-on-merge-commits: "true"

Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -54,12 +54,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

- name: 🏗️ Install Node.js 22.x
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
Expand Down