Skip to content

Commit 4d2f90d

Browse files
Migrate workflows to Blacksmith
1 parent 4173983 commit 4d2f90d

15 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
runner: [ubuntu-latest]
14+
runner: [blacksmith-16vcpu-ubuntu-2404]
1515
postgres-version: [13, 14, 15, 16, 17]
1616
runs-on: ${{ matrix.runner }}
1717
timeout-minutes: 30

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
flow_cleanup:
9-
runs-on: ubuntu-24.04
9+
runs-on: blacksmith-4vcpu-ubuntu-2404
1010
timeout-minutes: 60
1111
steps:
1212
- name: checkout sources

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
analyze:
1313
name: Analyze (${{ matrix.language }})
14-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-24.04' }}
14+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'blacksmith-4vcpu-ubuntu-2404' }}
1515
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
1616
permissions:
1717
# required for all workflows

.github/workflows/customer-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
docker-build:
1313
strategy:
1414
matrix:
15-
runner: [ubuntu-latest]
15+
runner: [blacksmith-4vcpu-ubuntu-2404]
1616
runs-on: ${{ matrix.runner }}
1717
permissions:
1818
contents: read

.github/workflows/dev-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
# ubuntu-latest leverages larger GH runner pool & completes in ~30s instead of ~3m
14-
runner: [ubuntu-latest]
14+
runner: [blacksmith-4vcpu-ubuntu-2404]
1515
runs-on: ${{ matrix.runner }}
1616
permissions:
1717
contents: read

.github/workflows/flow-api-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
runs-on: blacksmith-4vcpu-ubuntu-2404
99
permissions:
1010
contents: write
1111
steps:

.github/workflows/flow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
runner: [ubuntu-latest-16-cores]
18+
runner: [blacksmith-16vcpu-ubuntu-2404]
1919
db-version: [{pg: 15, mysql: 'mysql-gtid', mongo: '6.0'}, {pg: 16, mysql: 'mysql-pos', mongo: '7.0'}, {pg: 17, mysql: 'maria', mongo: '8.0'}]
2020
runs-on: ${{ matrix.runner }}
2121
timeout-minutes: 30

.github/workflows/golang-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
golangci:
1414
name: lint
15-
runs-on: [ubuntu-24.04]
15+
runs-on: [blacksmith-4vcpu-ubuntu-2404]
1616
steps:
1717
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1818

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
permissions:
1919
contents: write
2020
pull-requests: write
21-
runs-on: ubuntu-latest
21+
runs-on: blacksmith-4vcpu-ubuntu-2404
2222
steps:
2323
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6
2424
env:

.github/workflows/rust-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
strategy:
1515
matrix:
16-
runner: [ubuntu-latest]
16+
runner: [blacksmith-4vcpu-ubuntu-2404]
1717
runs-on: ${{ matrix.runner }}
1818
steps:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

0 commit comments

Comments
 (0)