Skip to content

Commit 946717d

Browse files
committed
revert some
1 parent 6b80bb7 commit 946717d

18 files changed

+26
-26
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions: {}
1111
jobs:
1212
determine-image-tag:
1313
name: Determine Image Tag
14-
runs-on: blacksmith-2vcpu-ubuntu-2404
14+
runs-on: ubuntu-latest
1515
permissions:
1616
contents: read
1717
outputs:

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# github.event.pull_request.user.login == 'new-developer' ||
1919
# github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
2020

21-
runs-on: blacksmith-4vcpu-ubuntu-2404
21+
runs-on: ubuntu-latest
2222
permissions:
2323
contents: read
2424
pull-requests: read

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20-
runs-on: blacksmith-4vcpu-ubuntu-2404
20+
runs-on: ubuntu-latest
2121
permissions:
2222
contents: read
2323
pull-requests: read

.github/workflows/dependabot-auto-fix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
tidy-and-verify:
1414
if: github.actor == 'dependabot[bot]'
15-
runs-on: blacksmith-4vcpu-ubuntu-2404
15+
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v6
1818
with:

.github/workflows/docs_build.yml

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

1414
jobs:
1515
docs_build:
16-
runs-on: blacksmith-2vcpu-ubuntu-2404
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v6

.github/workflows/docs_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
jobs:
2323
# Build job
2424
build:
25-
runs-on: blacksmith-2vcpu-ubuntu-2404
25+
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v6

.github/workflows/docs_preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency: preview-${{ github.ref }}
1717
jobs:
1818
deploy-preview:
1919
if: github.actor != 'dependabot[bot]'
20-
runs-on: blacksmith-4vcpu-ubuntu-2404
20+
runs-on: ubuntu-latest
2121
permissions: write-all
2222
steps:
2323
- name: Checkout

.github/workflows/ghcr-prune.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121
prune:
2222
name: Remove aged commit-hash tags
23-
runs-on: blacksmith-4vcpu-ubuntu-2404
23+
runs-on: ubuntu-latest
2424
strategy:
2525
fail-fast: false
2626
matrix:

.github/workflows/housekeeping.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# ignore dependabot PRs
2626
if: ${{ github.event.pull_request && github.actor != 'dependabot[bot]' }}
2727
name: Assign PR to creator
28-
runs-on: blacksmith-4vcpu-ubuntu-2404
28+
runs-on: ubuntu-latest
2929
permissions:
3030
issues: write
3131
pull-requests: write

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
jobs:
1111
golangci-lint:
1212
name: golangci-lint
13-
runs-on: blacksmith-4vcpu-ubuntu-2404
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v6
1616
- uses: actions/setup-go@v6
@@ -34,7 +34,7 @@ jobs:
3434
if: env.GIT_DIFF
3535

3636
hadolint:
37-
runs-on: blacksmith-4vcpu-ubuntu-2404
37+
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v6
4040
- uses: hadolint/hadolint-action@v3.3.0
@@ -43,7 +43,7 @@ jobs:
4343
failure-threshold: error
4444

4545
yamllint:
46-
runs-on: blacksmith-4vcpu-ubuntu-2404
46+
runs-on: ubuntu-latest
4747
steps:
4848
- uses: actions/checkout@v6
4949
with:
@@ -57,7 +57,7 @@ jobs:
5757
if: env.GIT_DIFF
5858

5959
markdown-lint:
60-
runs-on: blacksmith-4vcpu-ubuntu-2404
60+
runs-on: ubuntu-latest
6161
steps:
6262
- uses: actions/checkout@v6
6363
with:
@@ -71,7 +71,7 @@ jobs:
7171

7272
# Checks that the .goreleaser.yaml file is valid
7373
goreleaser-check:
74-
runs-on: blacksmith-4vcpu-ubuntu-2404
74+
runs-on: ubuntu-latest
7575
steps:
7676
- name: checkout
7777
uses: actions/checkout@v6

0 commit comments

Comments
 (0)