Skip to content

Commit 069b5d9

Browse files
Migrate workflows to Blacksmith (#436)
Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com>
1 parent db7af5f commit 069b5d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44

55
#################### Unittests ####################
66
unittest:
7-
runs-on: ubuntu-latest
7+
runs-on: blacksmith-4vcpu-ubuntu-2204
88
strategy:
99
matrix:
1010
python-version: [3.8,3.9,"3.10","3.12"]
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v4
1414
- name: Set up Python ${{ matrix.python-version }}
1515
id: python
16-
uses: actions/setup-python@v4
16+
uses: useblacksmith/setup-python@v6
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies
@@ -23,7 +23,7 @@ jobs:
2323
#################### Integration tests ####################
2424
integration:
2525
needs: [unittest]
26-
runs-on: ubuntu-latest
26+
runs-on: blacksmith-4vcpu-ubuntu-2204
2727
strategy:
2828
matrix:
2929
python-version: [3.8,3.9,"3.10","3.12"]
@@ -34,7 +34,7 @@ jobs:
3434
run: docker build -t rabbitmq:tls .
3535
- name: Set up Python ${{ matrix.python-version }}
3636
id: python
37-
uses: actions/setup-python@v4
37+
uses: useblacksmith/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install dependencies
@@ -50,7 +50,7 @@ jobs:
5050
#################### Linters and checkers ####################
5151
lint:
5252
needs: [unittest, integration]
53-
runs-on: ubuntu-latest
53+
runs-on: blacksmith-4vcpu-ubuntu-2204
5454
strategy:
5555
matrix:
5656
python-version: [3.8]
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v4
6060
- name: Set up Python ${{ matrix.python-version }}
6161
id: python
62-
uses: actions/setup-python@v4
62+
uses: useblacksmith/setup-python@v6
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565
- name: Install dependencies

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
analyze:
2323
name: Analyze
24-
runs-on: ubuntu-latest
24+
runs-on: blacksmith-4vcpu-ubuntu-2204
2525
permissions:
2626
actions: read
2727
contents: read

0 commit comments

Comments
 (0)