Skip to content
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
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ env:
jobs:
build:
name: Build
# Self-hosted runner on orion.local (Apple M4 Pro, arm64). To fall back to
# GitHub-hosted, change this line to: runs-on: ubuntu-latest
runs-on: [self-hosted, orion]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
release:
name: Build and publish plugin
runs-on: [self-hosted, orion]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

Expand Down Expand Up @@ -43,8 +43,6 @@ jobs:
- name: Build plugin zip
run: ./gradlew assemble --no-daemon

# Use the action rather than the gh CLI — the self-hosted runner container
# has no gh installed.
- name: Publish release
uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3.0.2
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- CI moved off the self-hosted orion runner fleet onto `ubuntu-latest`. The
fleet (colima/Docker on orion.local) is being decommissioned org-wide; no
behavior change to the tool.

### Security
- **Dependabot now bumps the SHA-pinned actions and the Gradle plugins (#80).**
CI was already fully SHA-pinned, but nothing ever moved those pins — and a
Expand Down
Loading