Skip to content

Commit a58ed05

Browse files
Migrate workflows to Blacksmith
1 parent 5179539 commit a58ed05

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci-81.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
ci:
8-
runs-on: ubuntu-latest
8+
runs-on: blacksmith-4vcpu-ubuntu-2404
99
steps:
1010
- uses: actions/checkout@v4
1111

@@ -16,7 +16,7 @@ jobs:
1616
run: make up
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4
19+
uses: useblacksmith/setup-node@v5
2020
with:
2121
node-version: '20'
2222
cache: 'npm'

.github/workflows/ci-82.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
ci:
8-
runs-on: ubuntu-latest
8+
runs-on: blacksmith-4vcpu-ubuntu-2404
99
steps:
1010
- uses: actions/checkout@v4
1111

@@ -16,7 +16,7 @@ jobs:
1616
run: make up
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4
19+
uses: useblacksmith/setup-node@v5
2020
with:
2121
node-version: '20'
2222
cache: 'npm'

.github/workflows/ci-bindings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
ci-bindings:
8-
runs-on: ubuntu-latest
8+
runs-on: blacksmith-4vcpu-ubuntu-2404
99

1010
strategy:
1111
matrix:
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v4
18+
uses: useblacksmith/setup-node@v5
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
cache: 'npm'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818
analyze:
1919
name: Analyze
20-
runs-on: ubuntu-latest
20+
runs-on: blacksmith-4vcpu-ubuntu-2404
2121

2222
strategy:
2323
fail-fast: false

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
10+
runs-on: blacksmith-4vcpu-ubuntu-2404
1111

1212
steps:
1313
- uses: actions/checkout@v1
1414

1515
- name: Use Node.js
16-
uses: actions/setup-node@v1
16+
uses: useblacksmith/setup-node@v5
1717
with:
1818
node-version: 16
1919

2020
- name: Cache node modules
21-
uses: actions/cache@v1
21+
uses: useblacksmith/cache@v5
2222
with:
2323
path: ~/.npm
2424
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)