Skip to content

Commit 2965e36

Browse files
author
Factory Bot
committed
ci: replace Blacksmith runners with GitHub standard runners
1 parent 7a104aa commit 2965e36

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
jobs:
1414
fmt:
1515
name: Format
16-
runs-on: blacksmith-32vcpu-ubuntu-2404
16+
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: dtolnay/rust-toolchain@stable
@@ -23,7 +23,7 @@ jobs:
2323

2424
clippy:
2525
name: Clippy
26-
runs-on: blacksmith-32vcpu-ubuntu-2404
26+
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4
2929
- name: Install Linux dependencies
@@ -44,11 +44,11 @@ jobs:
4444
matrix:
4545
include:
4646
- name: ubuntu
47-
runner: blacksmith-32vcpu-ubuntu-2404
47+
runner: ubuntu-latest
4848
- name: macos
4949
runner: macos-latest
5050
- name: windows
51-
runner: windows-64-cli
51+
runner: windows-latest
5252
steps:
5353
- uses: actions/checkout@v4
5454
- name: Install Linux dependencies
@@ -71,11 +71,11 @@ jobs:
7171
matrix:
7272
include:
7373
- name: ubuntu
74-
runner: blacksmith-32vcpu-ubuntu-2404
74+
runner: ubuntu-latest
7575
- name: macos
7676
runner: macos-latest
7777
- name: windows
78-
runner: windows-64-cli
78+
runner: windows-latest
7979
steps:
8080
- uses: actions/checkout@v4
8181
- name: Install Linux dependencies
@@ -98,11 +98,11 @@ jobs:
9898
matrix:
9999
include:
100100
- name: ubuntu
101-
runner: blacksmith-32vcpu-ubuntu-2404
101+
runner: ubuntu-latest
102102
- name: macos
103103
runner: macos-latest
104104
- name: windows
105-
runner: windows-64-cli
105+
runner: windows-latest
106106
steps:
107107
- uses: actions/checkout@v4
108108
- uses: actions/setup-node@v4
@@ -130,7 +130,7 @@ jobs:
130130

131131
audit:
132132
name: Security Audit
133-
runs-on: blacksmith-32vcpu-ubuntu-2404
133+
runs-on: ubuntu-latest
134134
permissions:
135135
checks: write
136136
contents: read

.github/workflows/homebrew.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
update-homebrew:
1414
name: Update Homebrew Formula
15-
runs-on: blacksmith-4vcpu-ubuntu-2404
15+
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
1818

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# ==========================================================================
3737
prepare:
3838
name: Prepare Release
39-
runs-on: blacksmith-4vcpu-ubuntu-2404
39+
runs-on: ubuntu-latest
4040
outputs:
4141
version: ${{ steps.version.outputs.version }}
4242
tag: ${{ steps.version.outputs.tag }}
@@ -92,11 +92,11 @@ jobs:
9292
fail-fast: false
9393
matrix:
9494
include:
95-
- os: windows-64-cli
95+
- os: windows-latest
9696
target: x86_64-pc-windows-msvc
9797
artifact: cortex-cli-windows-x64
9898
ext: .exe
99-
- os: windows-64-cli-arm64
99+
- os: windows-latest
100100
target: aarch64-pc-windows-msvc
101101
artifact: cortex-cli-windows-arm64
102102
ext: .exe
@@ -108,11 +108,11 @@ jobs:
108108
target: aarch64-apple-darwin
109109
artifact: cortex-cli-macos-arm64
110110
ext: ""
111-
- os: blacksmith-16vcpu-ubuntu-2404
111+
- os: ubuntu-latest
112112
target: x86_64-unknown-linux-gnu
113113
artifact: cortex-cli-linux-x64
114114
ext: ""
115-
- os: blacksmith-16vcpu-ubuntu-2404
115+
- os: ubuntu-latest
116116
target: aarch64-unknown-linux-gnu
117117
artifact: cortex-cli-linux-arm64
118118
ext: ""
@@ -181,7 +181,7 @@ jobs:
181181
matrix:
182182
include:
183183
- name: Windows x64
184-
runner: windows-64-cli
184+
runner: windows-latest
185185
target: x86_64-pc-windows-msvc
186186
artifact: cortex-gui-windows-x64
187187
bundle: msi
@@ -299,7 +299,7 @@ jobs:
299299
name: Create Release
300300
needs: [prepare, build-cli, build-gui]
301301
if: always() && needs.prepare.result == 'success' && (needs.build-cli.result == 'success' || needs.build-cli.result == 'skipped') && (needs.build-gui.result == 'success' || needs.build-gui.result == 'skipped')
302-
runs-on: blacksmith-4vcpu-ubuntu-2404
302+
runs-on: ubuntu-latest
303303
steps:
304304
- uses: actions/checkout@v4
305305

.github/workflows/winget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
winget:
1717
name: Publish to Winget
18-
runs-on: blacksmith-4vcpu-windows-2025
18+
runs-on: windows-latest
1919
steps:
2020
- uses: actions/checkout@v4
2121

0 commit comments

Comments
 (0)