Skip to content

Commit

Permalink
ci: update workflows to use latitude.sh based runners (#954)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <[email protected]>
  • Loading branch information
nathanklick authored Aug 16, 2024
1 parent 72c305d commit 828995a
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/flow-deploy-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ permissions:
jobs:
prepare-release:
name: Release / Prepare
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
outputs:
version: ${{ steps.tag.outputs.version }}
steps:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

publish-docker-image:
name: Publish / Docker Image
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
needs:
- prepare-release
steps:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

publish-helm-charts:
name: Publish / Helm Charts
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
needs:
- prepare-release
steps:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:

create-github-release:
name: Github / Release
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
needs:
- publish-maven-central
- publish-docker-image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flow-pull-request-formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ concurrency:
jobs:
title-check:
name: Title Check
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
steps:
- name: Check PR Title
uses: step-security/conventional-pr-title-action@19fb561b33015fd2184055a05ce5a3bcf2ba3f54 # v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxc-code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ env:
jobs:
analyze:
name: ${{ inputs.custom-job-label || 'Analyze' }}
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
steps:
- name: Checkout Code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxc-compile-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ env:
jobs:
compile:
name: ${{ inputs.custom-job-label || 'Compiles' }}
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
steps:
- name: Checkout Code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxc-helm-chart-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ permissions:
jobs:
test:
name: ${{ inputs.custom-job-label || 'Helm Chart Test' }} (${{ matrix.scriptName }})
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxc-release-maven-central.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ env:
jobs:
release:
name: ${{ inputs.custom-job-label || 'Release' }}
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
outputs:
notes: ${{ steps.create-release-notes.outputs.RELEASE_NOTES }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zxf-snyk-monitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
jobs:
snyk:
name: Snyk Monitor
runs-on: [self-hosted, Linux, medium, ephemeral]
runs-on: solo-linux-medium
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down

0 comments on commit 828995a

Please sign in to comment.