Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

Commit 0e3168b

Browse files
committed
remove buildjet
1 parent 367747d commit 0e3168b

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Setup Node.js
33
runs:
44
using: "composite"
55
steps:
6-
- uses: buildjet/setup-node@v3
6+
- uses: actions/setup-node@v3
77
with:
88
node-version: 18.18.2
99
registry-url: 'https://registry.npmjs.org'

.github/workflows/build-shared-cache.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
# Build a shared cache for the dependencies to be shared between our PR and workflows
1515
jobs:
1616
build-shared-deps-cache:
17-
runs-on: buildjet-4vcpu-ubuntu-2204
17+
runs-on: ubuntu-latest
1818
timeout-minutes: 20
1919
steps:
2020
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323

2424
build-shared-tests-cache:
2525
needs: build-shared-deps-cache
26-
runs-on: buildjet-4vcpu-ubuntu-2204
26+
runs-on: ubuntu-latest
2727
timeout-minutes: 20
2828
steps:
2929
- uses: actions/checkout@v3
@@ -41,7 +41,7 @@ jobs:
4141
# Cache our latests success snapshot to avoid re-download in between PR and workflow
4242
build-shared-snapshot-cache:
4343
needs: build-shared-deps-cache
44-
runs-on: buildjet-4vcpu-ubuntu-2204
44+
runs-on: ubuntu-latest
4545
# Right now there is no way to download our snapshot without having to restore it, so sadly we need a database
4646
services:
4747
postgres:

.github/workflows/draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
data: [
5151
{
52-
os: "buildjet-4vcpu-ubuntu-2204",
52+
os: "ubuntu-latest",
5353
npmFilename: "snaplet-npm-${{ needs.draft-release.outputs.version }}.tgz"
5454
},
5555
]

.github/workflows/publish-postgres-container-with-data.yml

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

88
jobs:
99
publish-postgres-container:
10-
runs-on: buildjet-4vcpu-ubuntu-2204
10+
runs-on: ubuntu-latest
1111
concurrency:
1212
group: publish-postgres-container
1313
cancel-in-progress: true

.github/workflows/release-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
release:
13-
runs-on: buildjet-4vcpu-ubuntu-2204
13+
runs-on: ubuntu-latest
1414
permissions:
1515
contents: write
1616
concurrency:

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727
jobs:
2828
setup:
2929
if: github.event.pull_request.draft == false
30-
runs-on: buildjet-4vcpu-ubuntu-2204
30+
runs-on: ubuntu-latest
3131
timeout-minutes: 10
3232
steps:
3333
- uses: actions/checkout@v3
@@ -36,7 +36,7 @@ jobs:
3636

3737
setup-cli:
3838
needs: setup
39-
runs-on: buildjet-8vcpu-ubuntu-2204
39+
runs-on: ubuntu-latest
4040
timeout-minutes: 10
4141
steps:
4242
- uses: actions/checkout@v3
@@ -249,7 +249,7 @@ jobs:
249249

250250
tests-unit:
251251
needs: setup
252-
runs-on: buildjet-4vcpu-ubuntu-2204
252+
runs-on: ubuntu-latest
253253
timeout-minutes: 10
254254
services:
255255
postgres:

0 commit comments

Comments
 (0)