Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# https://github.com/rhysd/actionlint/blob/main/docs/config.md

self-hosted-runner:
labels:
- blacksmith-2vcpu-ubuntu-2404
- blacksmith-4vcpu-ubuntu-2404
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Run static checks only for Ubuntu and Python 3.9
static-checks:
name: Static checks
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- "3.12"
- "3.13"
os:
- ubuntu-latest
- blacksmith-2vcpu-ubuntu-2404
# There shouldn't be any behavior differences between OSes,
# so we'll only run the test suite on Ubuntu for now. Also,
# since I (the main maintainer) develop on a macOS machine,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
codeql-python:
name: Analyze (Python)
runs-on: 'ubuntu-latest'
runs-on: 'blacksmith-2vcpu-ubuntu-2404'
timeout-minutes: 5
permissions:
# required for all workflows
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:
jobs:
build:
name: Build distributions
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
Expand All @@ -53,7 +53,7 @@ jobs:
if: github.ref == 'refs/heads/main'
needs:
- build
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 2
environment:
name: testpypi
Expand All @@ -76,7 +76,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
needs:
- build
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 2
environment:
name: pypi
Expand All @@ -97,7 +97,7 @@ jobs:
name: Publish a GitHub Release
needs:
- publish-to-pypi
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 2
permissions:
contents: write # IMPORTANT: mandatory for making GitHub Releases
Expand Down
4 changes: 3 additions & 1 deletion docs/reference/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ This document outlines the list of changes to ridgeplot between each release. Fo
Unreleased changes
------------------

- ...
### CI/CD

- Migrate GitHub workflows to Blacksmith runners ({gh-pr}`327`)

---

Expand Down
Loading