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
6 changes: 3 additions & 3 deletions .github/workflows/auto-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider pinning actions/checkout to a full commit SHA (or at least a specific v6.x.y tag) instead of the moving v6 major tag to reduce supply-chain risk and avoid unexpected behavior changes when v6 is advanced.

Copilot uses AI. Check for mistakes.

- name: Detect Service Type
id: detect
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Railway CLI
run: npm i -g @railway/cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider pinning actions/checkout to a full commit SHA (or at least a specific v6.x.y tag) instead of the moving v6 major tag to reduce supply-chain risk and avoid unexpected behavior changes when v6 is advanced.

Suggested change
- uses: actions/checkout@v6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # actions/checkout@v4.1.7

Copilot uses AI. Check for mistakes.

- name: Brand Compliance Check
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider pinning actions/checkout to a full commit SHA (or at least a specific v6.x.y tag) instead of the moving v6 major tag to reduce supply-chain risk and avoid unexpected behavior changes when v6 is advanced.

Copilot uses AI. Check for mistakes.

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand All @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run npm audit
if: hashFiles('package.json') != ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/self-healing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider pinning actions/checkout to a full commit SHA (or at least a specific v6.x.y tag) instead of the moving v6 major tag to reduce supply-chain risk and avoid unexpected behavior changes when v6 is advanced.

Copilot uses AI. Check for mistakes.

- name: Check Health
id: health
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node
if: hashFiles('package.json') != ''
Expand Down
Loading