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

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

- name: Validate compose file
run: docker compose config --quiet
Expand All @@ -27,7 +27,7 @@ jobs:

- name: Upload AI eval report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ai-eval-summary
path: reports/ai/eval-summary.json
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Store compose logs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: compose-ai-eval-log
path: compose-ai-eval.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/api-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 35
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate compose file
run: docker compose config --quiet
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Store compose logs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: compose-api-smoke-log
path: compose-api-smoke.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

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

- name: Set up Java 21
uses: actions/setup-java@v5
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Upload test reports on failure
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-reports
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- javascript-typescript
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Java 21
if: matrix.language == 'java-kotlin'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-curation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

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

- name: Run curation
shell: pwsh
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Upload curation reports
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dependabot-curation-reports
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

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

- name: Generate inventory
shell: pwsh
Expand All @@ -26,7 +26,7 @@ jobs:
run: ./scripts/dependabot-inventory.ps1

- name: Upload inventory
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dependabot-inventory
path: reports/dependabot/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: Validate portfolio documentation
shell: pwsh
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

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

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Upload Playwright preview report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-preview-report
path: |
Expand All @@ -70,7 +70,7 @@ jobs:

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

- name: Set up Node.js
uses: actions/setup-node@v6
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-report
path: frontend/playwright-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
timeout-minutes: 40
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Start stack and validate business flow
shell: pwsh
Expand All @@ -45,7 +45,7 @@ jobs:

- name: Upload k6 summary
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: k6-role-based-suite-summary
path: reports/k6/role-based-suite-summary.json
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Store compose logs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: compose-performance-smoke-log
path: compose-performance-smoke.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

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

- name: Create release from notes
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/repository-governance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

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

- name: Dry-run repository governance
if: ${{ inputs.mode == 'dry-run' }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Upload governance reports
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: repository-governance-reports
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

- name: Prepare reports directory
run: mkdir -p security-reports

- name: Run OpenSSF Scorecard
uses: ossf/scorecard-action@v2.4.0
uses: ossf/scorecard-action@v2.4.3
with:
results_file: security-reports/scorecard.sarif
results_format: sarif
publish_results: false

- name: Upload Scorecard report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: openssf-scorecard-report
path: security-reports/scorecard.sarif
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Scan repository for secrets
uses: gitleaks/gitleaks-action@v2
uses: gitleaks/gitleaks-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_CONFIG: .gitleaks.toml
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Prepare reports directory
run: mkdir -p security-reports
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Upload Trivy filesystem report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: trivy-filesystem-report
path: security-reports/trivy-fs.txt
Expand All @@ -70,7 +70,7 @@ jobs:
actions: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Prepare reports directory
run: mkdir -p security-reports
Expand All @@ -83,7 +83,7 @@ jobs:
output-file: security-reports/devhire-cloud-sbom.cdx.json

- name: Upload SBOM
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: devhire-cloud-sbom
path: security-reports/devhire-cloud-sbom.cdx.json
Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Review dependency changes
uses: actions/dependency-review-action@v5
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Java 21
uses: actions/setup-java@v5
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- frontend
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

- name: Upload image scan report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: trivy-image-${{ matrix.service }}
path: security-reports/trivy-image-${{ matrix.service }}.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

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

- name: Terraform fmt validate lint and config scan
shell: pwsh
Expand Down
Loading