Skip to content
Closed
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Lint & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with: { fetch-depth: 0 }

# Node 22 first; corepack provides pnpm pinned to packageManager.
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
DATABASE_URL: mysql://mskanban:cipass@127.0.0.1:3306/mskanban_test
REDIS_URL: redis://127.0.0.1:6379
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Node 22 first — its bundled corepack reads the `packageManager`
# field in package.json and downloads exactly that pnpm version
# on first use. We deliberately do NOT use pnpm/action-setup
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# enable it so the test can create its throwaway account.
FEATURE_PUBLIC_REGISTRATION: "true"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Node 22 first — its bundled corepack reads the `packageManager`
# field in package.json and downloads exactly that pnpm version
# on first use. We deliberately do NOT use pnpm/action-setup
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
DATABASE_URL: mysql://placeholder:placeholder@127.0.0.1:3306/placeholder
REDIS_URL: redis://127.0.0.1:6379
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Node 22 first — its bundled corepack reads the `packageManager`
# field in package.json and downloads exactly that pnpm version
# on first use. We deliberately do NOT use pnpm/action-setup
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
name: pnpm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Node 22 first — its bundled corepack reads the `packageManager`
# field in package.json and downloads exactly that pnpm version
# on first use. We deliberately do NOT use pnpm/action-setup
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with: { fetch-depth: 0 }
- name: Verify Signed-off-by on each commit
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
language: [javascript-typescript]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
url: https://mskanban.msk-scripts.de/
steps:
- name: Checkout (for the workflow code only)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Load action key into SSH agent
uses: webfactory/ssh-agent@v0.10.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Build & push container image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with: { fetch-depth: 0 }

- uses: docker/setup-qemu-action@v4
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
name: SBOM (CycloneDX + SPDX)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with: { fetch-depth: 0 }

# Syft natively reads `pnpm-lock.yaml` — npm-centric tools like
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
runs-on: ubuntu-latest
needs: [docker, sbom]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with: { fetch-depth: 0 }

- uses: actions/download-artifact@v8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-sponsors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
# Default GITHUB_TOKEN reicht für Checkout + Push (siehe `permissions: contents: write` oben).
# SPONSORS_TOKEN ist ein User-PAT und nur für die Sponsors-GraphQL-API gedacht
# (read:user-Scope). Mit ihm als checkout-Token scheiterte `git fetch` mit
Expand Down
Loading