Skip to content

Commit cd3aaa9

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

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ on:
1212
jobs:
1313
build:
1414
name: Build distribution
15-
runs-on: ubuntu-22.04
15+
runs-on: blacksmith-4vcpu-ubuntu-2204
1616

1717
steps:
1818
- uses: actions/checkout@v4
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: useblacksmith/setup-python@v6
2222
with:
2323
python-version: "3.x"
2424

@@ -36,7 +36,7 @@ jobs:
3636

3737
publish-to-pypi:
3838
name: Publish to PyPI
39-
runs-on: ubuntu-22.04
39+
runs-on: blacksmith-4vcpu-ubuntu-2204
4040

4141
needs: [build]
4242

@@ -61,7 +61,7 @@ jobs:
6161

6262
github-release:
6363
name: Upload them to GitHub Release
64-
runs-on: ubuntu-22.04
64+
runs-on: blacksmith-4vcpu-ubuntu-2204
6565

6666
needs: [publish-to-pypi]
6767

.github/workflows/codeql-analysis.yml

+1-1
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

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: blacksmith-4vcpu-ubuntu-2204
1212
strategy:
1313
fail-fast: false
1414
matrix: # https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v4
3939
- name: Set up Python ${{ matrix.python-version }}
40-
uses: actions/setup-python@v5
40+
uses: useblacksmith/setup-python@v6
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
- name: Install dependencies

0 commit comments

Comments
 (0)