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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Verify Docker dependency policy
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ironclad-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: 📥 Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 🟢 Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version-file: '.nvmrc'

Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

- name: 📤 Upload AI Runtime Diagnostics
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ai-runtime-diagnostics-${{ github.run_id }}
path: ai-ci-logs/
Expand All @@ -151,7 +151,7 @@ jobs:

- name: 📄 Archive Audit Certificate
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: deployment-certificate
path: audit_reports/*.md
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/platform-production-readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 2

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20.12.2'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'

Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:

- name: Upload production readiness attestation
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: platform-production-attestation-${{ github.run_id }}
path: .build-logs/platform-production-attestation.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/private-security-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ jobs:

steps:
- name: Checkout source without persisted credentials
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 1
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20.12.2'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:

- name: Upload regression evidence
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: private-security-regression-${{ github.run_id }}
path: security-regression-evidence/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security-and-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 2
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: '20.12.2'

Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

- name: Upload build phase logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-phase-logs-${{ github.run_id }}
path: .build-logs/
Expand All @@ -215,7 +215,7 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/vision-scada-data-exchange.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,24 +75,24 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false

- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version: '20.12.2'

# The repository intentionally has no committed package-lock.json.
# Reuse only an exact package.json cache key. Do not restore metadata from
# an older dependency graph, because security pins may have changed.
- name: Cache npm download artifacts
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.npm
key: npm-${{ runner.os }}-node-20.12.2-${{ hashFiles('package.json') }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: '3.12'

Expand Down
Loading