Skip to content
Merged
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
62 changes: 62 additions & 0 deletions .github/workflows/actions.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# This file is machine-generated by `gh actions-lock`.
# Do not edit by hand; run `gh actions-lock` to update.
# Docs: https://gh.io/actions-lockfile
version: 'v0.0.2'
workflows:
'.github/workflows/hypatia-scan.yml': []
'.github/workflows/ada-ci.yml':
- 'actions/checkout@v4.4.0'
- 'actions/download-artifact@v3.0.2'
- 'actions/upload-artifact@v3.2.1'
'.github/workflows/dogfood-gate.yml':
- 'actions/checkout@v4.3.1'
'.github/workflows/openssf-compliance.yml':
- 'actions/checkout@v4.3.1'
'.github/workflows/static-analysis-gate.yml':
- 'actions/checkout@v6.0.2'
- 'actions/download-artifact@v4.1.8'
- 'actions/upload-artifact@v4.6.2'
- 'erlef/setup-beam@v1.20.4'
'.github/workflows/workflow-linter.yml':
- 'actions/checkout@v6.0.2'
dependencies:
'actions/checkout@v4.3.1':
ref: 'v4.3.1'
commit: 'sha1-34e114876b0b11c390a56381ad16ebd13914f8d5'
owner_id: 44036562
repo_id: 197814629
'actions/checkout@v4.4.0':
ref: 'v4.4.0'
commit: 'sha1-11d5960a326750d5838078e36cf38b85af677262'
owner_id: 44036562
repo_id: 197814629
'actions/checkout@v6.0.2':
ref: 'v6.0.2'
commit: 'sha1-de0fac2e4500dabe0009e67214ff5f5447ce83dd'
owner_id: 44036562
repo_id: 197814629
'actions/download-artifact@v3.0.2':
ref: 'v3.0.2'
commit: 'sha1-9bc31d5ccc31df68ecc42ccf4149144866c47d8a'
owner_id: 44036562
repo_id: 192626254
'actions/download-artifact@v4.1.8':
ref: 'v4.1.8'
commit: 'sha1-fa0a91b85d4f404e444e00e005971372dc801d16'
owner_id: 44036562
repo_id: 192626254
'actions/upload-artifact@v3.2.1':
ref: 'v3.2.1'
commit: 'sha1-ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5'
owner_id: 44036562
repo_id: 192625955
'actions/upload-artifact@v4.6.2':
ref: 'v4.6.2'
commit: 'sha1-ea165f8d65b6e75b540449e92b4886f43607fa02'
owner_id: 44036562
repo_id: 192625955
'erlef/setup-beam@v1.20.4':
ref: 'v1.20.4'
commit: 'sha1-e6d7c94229049569db56a7ad5a540c051a010af9'
owner_id: 47606891
repo_id: 331103973
19 changes: 11 additions & 8 deletions .github/workflows/ada-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.

name: Ada/SPARK CI

on:
Expand Down Expand Up @@ -32,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.4.0
with:
fetch-depth: 0
submodules: recursive
Expand Down Expand Up @@ -65,7 +68,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.2.1
with:
name: trigger-binaries
path: |
Expand All @@ -82,10 +85,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.4.0

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v3.0.2
with:
name: trigger-binaries
path: .
Expand All @@ -110,7 +113,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.4.0

- name: Install Zig
run: |
Expand All @@ -128,7 +131,7 @@ jobs:
ls -la ffi/zig/

- name: Upload Zig artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.2.1
with:
name: zig-ffi
path: ffi/zig/
Expand All @@ -142,7 +145,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.4.0

- name: Run self-diagnostics
run: |
Expand Down Expand Up @@ -189,7 +192,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.4.0

- name: Check for secrets
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/dogfood-gate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
#
# dogfood-gate.yml — Hyperpolymath Dogfooding Quality Gate
Expand Down Expand Up @@ -29,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Check for A2ML files
id: detect
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Check for K9 files
id: detect
Expand Down Expand Up @@ -124,7 +125,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Scan for invisible characters
id: lint
Expand Down Expand Up @@ -189,7 +190,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Check for Groove manifest
id: groove
Expand Down Expand Up @@ -254,7 +255,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Check and validate eclexiaiser manifest
id: eclex
Expand Down Expand Up @@ -306,7 +307,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
uses: actions/checkout@v4.3.1

- name: Generate dogfooding scorecard
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/hypatia-scan.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
#
# Standalone Hypatia security scan (push / PR / weekly). This is NOT a duplicate
# of the `hypatia-scan` job in `static-analysis-gate.yml`: that job exists to
Expand All @@ -20,6 +21,7 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
security-events: write

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/openssf-compliance.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
# OpenSSF Best Practices compliance gate — blocks PRs and pushes that lack
# required files or still contain unfilled placeholder tokens.
name: OpenSSF Compliance
Expand All @@ -20,7 +21,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/checkout@v4.3.1
with:
persist-credentials: false
- name: Check SECURITY.md exists and has substance
Expand Down
23 changes: 12 additions & 11 deletions .github/workflows/static-analysis-gate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
# Static Analysis Gate — Required by branch protection rules.
# Runs panic-attack and hypatia, deposits findings for gitbot-fleet learning.
name: Static Analysis Gate
Expand All @@ -22,7 +23,7 @@
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install panic-attack (if available)
Expand Down Expand Up @@ -99,7 +100,7 @@
echo "" >> "$GITHUB_STEP_SUMMARY"
echo "Skipped: panic-attack not available in this environment." >> "$GITHUB_STEP_SUMMARY"
- name: Upload panic-attack findings
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@v4.6.2
with:
name: panic-attack-findings
path: panic-attack-findings.json
Expand All @@ -126,13 +127,13 @@
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Setup Elixir for Hypatia scanner
id: beam
continue-on-error: true
uses: erlef/setup-beam@e6d7c94229049569db56a7ad5a540c051a010af9 # v1.18.2
uses: erlef/setup-beam@v1.20.4

Check failure on line 136 in .github/workflows/static-analysis-gate.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=hyperpolymath_Ripper&issues=AaBDNhGesiM3YxXR1xJn&open=AaBDNhGesiM3YxXR1xJn&pullRequest=4

Check warning on line 136 in .github/workflows/static-analysis-gate.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/static-analysis-gate.yml#L136

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
elixir-version: '1.19.4'
otp-version: '28.3'
Expand Down Expand Up @@ -211,7 +212,7 @@
echo "" >> "$GITHUB_STEP_SUMMARY"
echo "Skipped: Hypatia scanner not available in this environment." >> "$GITHUB_STEP_SUMMARY"
- name: Upload hypatia findings
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@v4.6.2
with:
name: hypatia-findings
path: hypatia-findings.json
Expand All @@ -230,7 +231,7 @@
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Install panic-attack (if available)
Expand Down Expand Up @@ -292,7 +293,7 @@
echo "" >> "$GITHUB_STEP_SUMMARY"
echo "Skipped: panic-attack not available in this environment." >> "$GITHUB_STEP_SUMMARY"
- name: Upload bridge report
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@v4.6.2
with:
name: bridge-report
path: bridge-report.json
Expand All @@ -314,17 +315,17 @@
if: always()
steps:
- name: Download panic-attack findings
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
uses: actions/download-artifact@v4.1.8
with:
name: panic-attack-findings
path: findings/
- name: Download hypatia findings
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
uses: actions/download-artifact@v4.1.8
with:
name: hypatia-findings
path: findings/
- name: Download bridge report
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
uses: actions/download-artifact@v4.1.8
with:
name: bridge-report
path: findings/
Expand Down Expand Up @@ -384,7 +385,7 @@
echo "medium=$MEDIUM" >> "$GITHUB_OUTPUT"
echo "low=$LOW" >> "$GITHUB_OUTPUT"
- name: Upload unified findings (fleet scanner picks these up)
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@v4.6.2
with:
name: unified-findings
path: findings/unified-findings.json
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/workflow-linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: MPL-2.0
# This workflow is managed by gh actions-lock.
# workflow-linter.yml - Validates GitHub workflows against RSR security standards
# This workflow can be copied to other repos for consistent enforcement
name: Workflow Security Linter
Expand Down Expand Up @@ -27,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@v6.0.2

- name: Check SPDX Headers
run: |
Expand Down
Loading