Skip to content

Commit 9aa0129

Browse files
authored
feat(ci): Bump runners specs (#490)
1 parent 7f07396 commit 9aa0129

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
security_audit:
17-
runs-on: blacksmith-2vcpu-ubuntu-2404
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
check:
2222
name: Lint
23-
runs-on: blacksmith-2vcpu-ubuntu-2404
23+
runs-on: blacksmith-4vcpu-ubuntu-2404
2424
strategy:
2525
matrix:
2626
check: [fmt, clippy, sort]
@@ -56,7 +56,7 @@ jobs:
5656

5757
test-partial:
5858
name: Tests (Partial)
59-
runs-on: blacksmith-2vcpu-ubuntu-2404
59+
runs-on: blacksmith-4vcpu-ubuntu-2404
6060
# Run on forks.
6161
if: github.event.pull_request.head.repo.fork == true
6262
permissions:
@@ -114,7 +114,7 @@ jobs:
114114
115115
test-full:
116116
name: Tests (Full)
117-
runs-on: blacksmith-2vcpu-ubuntu-2404
117+
runs-on: blacksmith-4vcpu-ubuntu-2404
118118
# Run on non-forks.
119119
if: github.event.pull_request.head.repo.fork == false
120120
permissions:

.github/workflows/docker-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
matrix:
5050
include:
5151
- platform: linux/amd64
52-
runner: blacksmith-2vcpu-ubuntu-2404
52+
runner: blacksmith-4vcpu-ubuntu-2404
5353
arch: amd64
5454
- platform: linux/arm64
55-
runner: blacksmith-2vcpu-ubuntu-2404-arm
55+
runner: blacksmith-4vcpu-ubuntu-2404-arm
5656
arch: arm64
5757
outputs:
5858
digest-amd64: ${{ steps.export-digest.outputs.digest-amd64 }}
@@ -119,7 +119,7 @@ jobs:
119119
create-manifest:
120120
name: Create Multi-Arch Manifest
121121
needs: build-platform
122-
runs-on: blacksmith-2vcpu-ubuntu-2404
122+
runs-on: blacksmith-4vcpu-ubuntu-2404
123123
if: inputs.push == true
124124
steps:
125125
- name: Extract Image Name

.github/workflows/docker-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
jobs:
2323
resolve-ref:
2424
name: Resolve Checkout Ref
25-
runs-on: blacksmith-2vcpu-ubuntu-2404
25+
runs-on: blacksmith-4vcpu-ubuntu-2404
2626
outputs:
2727
ref: ${{ steps.pick.outputs.ref }}
2828
steps:
@@ -49,7 +49,7 @@ jobs:
4949
validate-experimental:
5050
name: Validate Experimental Build
5151
needs: resolve-ref
52-
runs-on: blacksmith-2vcpu-ubuntu-2404
52+
runs-on: blacksmith-4vcpu-ubuntu-2404
5353
if: github.event_name == 'workflow_dispatch' && inputs.experimental == true
5454
steps:
5555
- name: Checkout

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
deploy:
18-
runs-on: blacksmith-2vcpu-ubuntu-2404
18+
runs-on: blacksmith-4vcpu-ubuntu-2404
1919
if: github.event_name == 'push'
2020
steps:
2121
- name: Checkout
@@ -43,7 +43,7 @@ jobs:
4343
run: mkdocs gh-deploy --force
4444

4545
build:
46-
runs-on: blacksmith-2vcpu-ubuntu-2404
46+
runs-on: blacksmith-4vcpu-ubuntu-2404
4747
if: github.event_name == 'pull_request'
4848
steps:
4949
- name: Checkout

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ permissions:
2828
jobs:
2929
prepare-release:
3030
name: Prepare Release
31-
runs-on: blacksmith-2vcpu-ubuntu-2404
31+
runs-on: blacksmith-4vcpu-ubuntu-2404
3232
env:
3333
CARGO_TERM_COLOR: always
3434
steps:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
jobs:
2323
version:
2424
name: Determine Version
25-
runs-on: blacksmith-2vcpu-ubuntu-2404
25+
runs-on: blacksmith-4vcpu-ubuntu-2404
2626
# Gate: manual dispatch OR merged PRs labeled 'release'.
2727
if: |
2828
github.event_name == 'workflow_dispatch' || (
@@ -69,7 +69,7 @@ jobs:
6969
name: Create Tag
7070
needs: version
7171
if: needs.version.outputs.is_pr_merge == 'true' || github.event_name == 'workflow_dispatch'
72-
runs-on: blacksmith-2vcpu-ubuntu-2404
72+
runs-on: blacksmith-4vcpu-ubuntu-2404
7373
permissions:
7474
contents: write
7575
steps:
@@ -119,7 +119,7 @@ jobs:
119119
github-release:
120120
name: Create GitHub Release
121121
needs: [version, create-tag, build-and-push]
122-
runs-on: blacksmith-2vcpu-ubuntu-2404
122+
runs-on: blacksmith-4vcpu-ubuntu-2404
123123
steps:
124124
- name: Generate Release Notes
125125
id: notes

0 commit comments

Comments
 (0)