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
16 changes: 8 additions & 8 deletions .github/actions/dockerless/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,12 @@ runs:

- name: Acquire workflow scripts
shell: bash
env:
SCRIPT_VERSION: ${{ inputs.script_version }}
run: |
echo "📥 Acquiring workflow scripts..."
chmod +x "${{ github.action_path }}/scripts/acquire-scripts.sh"
"${{ github.action_path }}/scripts/acquire-scripts.sh" \
"${{ inputs.script_version }}"
"${{ github.action_path }}/scripts/acquire-scripts.sh" "$SCRIPT_VERSION"

- name: Configure Git Authentication
shell: bash
Expand Down Expand Up @@ -139,18 +140,17 @@ runs:
run: |
echo "🚀 Executing Simple Forge workflow..."
echo "🔍 DEBUG: Input validation..."
echo " simple_forge_api_key input: $([ -n '${{ inputs.simple_forge_api_key }}' ] && echo '[SET]' || echo '[EMPTY]')"
echo " API_KEY env var: $([ -n "$API_KEY" ] && echo "[SET - ${#API_KEY} chars]" || echo "[EMPTY]")"
chmod +x "${{ github.action_path }}/scripts/orchestrate-workflow.sh"
"${{ github.action_path }}/scripts/orchestrate-workflow.sh" \
"${{ inputs.job_id }}" \
"${{ inputs.issue_id }}" \
"${{ inputs.service_url }}" \
"${{ inputs.branch }}" \
"$JOB_ID" \
"$ISSUE_ID" \
"$SERVICE_URL" \
"$BRANCH" \
"${{ github.repository }}" \
"${{ github.run_id }}" \
"${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
"${{ inputs.simple_forge_api_key }}"
"$SIMPLE_FORGE_API_KEY"

- name: Cleanup
if: always()
Expand Down
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2

updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
labels:
- dependencies
- github-actions
commit-message:
prefix: deps
include: scope
groups:
actions-minor-and-patch:
applies-to: version-updates
update-types:
- minor
- patch
15 changes: 15 additions & 0 deletions .github/workflows/security-scan-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Security Scan Comment
on:
workflow_run:
workflows: ["Security Scan"]
types: [completed]
permissions:
pull-requests: write
actions: read
jobs:
comment:
if: github.event.workflow_run.event == 'pull_request'
uses: simple-container-com/actions/.github/workflows/security-scan-comment.yml@main
permissions:
pull-requests: write
actions: read
14 changes: 14 additions & 0 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Security Scan
on:
push:
branches: [v1]
pull_request:
branches: [v1]
workflow_dispatch:
permissions:
contents: read
jobs:
security:
uses: simple-container-com/actions/.github/workflows/security-scan.yml@main
permissions:
contents: read
15 changes: 15 additions & 0 deletions .github/workflows/semgrep-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Semgrep Comment
on:
workflow_run:
workflows: ["Semgrep"]
types: [completed]
permissions:
pull-requests: write
actions: read
jobs:
comment:
if: github.event.workflow_run.event == 'pull_request'
uses: simple-container-com/actions/.github/workflows/semgrep-comment.yml@main
permissions:
pull-requests: write
actions: read
14 changes: 14 additions & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Semgrep
on:
push:
branches: [v1]
pull_request:
branches: [v1]
workflow_dispatch:
permissions:
contents: read
jobs:
semgrep:
uses: simple-container-com/actions/.github/workflows/semgrep.yml@main
permissions:
contents: read
Loading