Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update workflows to use latitude.sh based runners #954

Merged
merged 1 commit into from
Aug 16, 2024
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
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
Loading