ci: migrate workflows to tenki (#1309)

👋 Hey there, reviewer!

Experience the fastest GitHub Actions with
[Tenki](https://www.tenki.cloud/), built for performance and cost
efficiency.

## What does this PR do?

This pull request was automatically generated by Tenki's Migration
Wizard.

Here's what's new once you merge:

- ** Faster Runners:** Your workflows now use Tenki's high-performance
bare-metal infrastructure ~35% faster than
default GitHub-hosted runners. 
[Learn more about Tenki's instance types
→](https://www.tenki.cloud/docs/runner-offering)

- **💵 Cheaper Runners:** as you now use Tenki's high-performance
bare-metal infrastructure and WE manage the costs,
that means for you: 90% cheaper than default GitHub-hosted runners. 
[Learn more about Tenki's pricing
→](https://www.tenki.cloud/docs/runner-billing)

## Any questions ? 
**- Is this free?** 
Yes, your first 3,000 minutes per month are on us.

**- Do I need to complete any other steps to migrate to Tenki?**
Nope. Hit Merge, and you are good to go 🎊

**- Who's can I contact if I have any other questions?**
Reach out at [hello@tenki.cloud,](mailto:hello@tenki.cloud,) we will
answer you within 24hrs.
This commit is contained in:
Prad Nukala
2025-11-19 17:45:53 -05:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs: jobs:
report: report:
name: Report CI Status name: Report CI Status
runs-on: builder runs-on: tenki-standard-autoscale
if: ${{ github.event.workflow_run.conclusion == 'failure' }} if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps: steps:
- name: Report Failure - name: Report Failure
+3 -3
View File
@@ -13,12 +13,12 @@ env:
jobs: jobs:
validate: validate:
name: Validate & Test name: Validate & Test
runs-on: builder # Self-hosted runner runs-on: tenki-standard-autoscale
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 # Required for github-env.sh comparisons fetch-depth: 0 # Required for github-env.sh comparisons
# Cache can be local on self-hosted runner for better performance # Cache can be local on self-hosted runner for better performance
- name: Cache Dependencies - name: Cache Dependencies
uses: actions/cache@v4 uses: actions/cache@v4
@@ -57,4 +57,4 @@ jobs:
# Clean build artifacts to prevent disk fill # Clean build artifacts to prevent disk fill
make clean || true make clean || true
# Keep caches but remove build outputs # Keep caches but remove build outputs
rm -rf dist/ build/ || true rm -rf dist/ build/ || true