chore(workflows): complete migration to Blacksmith cloud runners (#435)

* chore(workflows): complete migration to Blacksmith cloud runners

Migrate remaining workflows from self-hosted axecap runners to Blacksmith:
- docker.yml: publish job
- release.yml: publish job
- security.yml: audit and deny jobs (conditional on push events)

This completes the transition away from self-hosted infrastructure.
Axecap runner registrations (IDs 21, 22) have been removed.

All workflows now use blacksmith-2vcpu-ubuntu-2404 label for consistency.

* Merge branch 'main' into selfhost-blacksmith
This commit is contained in:
Will Sarg 2026-02-16 16:40:13 -05:00 committed by GitHub
parent 98bf7593f5
commit 73763f9864
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 97 additions and 97 deletions

View file

@ -61,7 +61,7 @@ jobs:
publish:
name: Build and Push Docker Image
if: github.event_name == 'push'
runs-on: [self-hosted, Linux, X64, lxc-ci]
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 25
permissions:
contents: read

View file

@ -75,7 +75,7 @@ jobs:
publish:
name: Publish Release
needs: build-release
runs-on: [self-hosted, Linux, X64, lxc-ci]
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

View file

@ -21,7 +21,7 @@ env:
jobs:
audit:
name: Security Audit
runs-on: ${{ github.event_name != 'pull_request' && fromJSON('["self-hosted","Linux","X64","lxc-ci"]') || 'ubuntu-latest' }}
runs-on: ${{ github.event_name != 'pull_request' && 'blacksmith-2vcpu-ubuntu-2404' || 'ubuntu-latest' }}
timeout-minutes: 20
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
@ -37,7 +37,7 @@ jobs:
deny:
name: License & Supply Chain
runs-on: ${{ github.event_name != 'pull_request' && fromJSON('["self-hosted","Linux","X64","lxc-ci"]') || 'ubuntu-latest' }}
runs-on: ${{ github.event_name != 'pull_request' && 'blacksmith-2vcpu-ubuntu-2404' || 'ubuntu-latest' }}
timeout-minutes: 20
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4