Skip to content

Commit 5fd7afd

Browse files
committed
revert gh workers to github ones
1 parent 7b97f02 commit 5fd7afd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/docker-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ concurrency:
2020

2121
jobs:
2222
build-latest:
23-
runs-on: [self-hosted, Linux, X64]
23+
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v4
2727

2828
- name: Log in to Docker Hub
2929
uses: docker/login-action@v3
30-
# if: github.event_name == 'push' # Only log in on pushes
30+
if: github.event_name == 'push' # Only log in on pushes
3131
with:
3232
username: ${{ secrets.DOCKER_USERNAME }}
3333
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/docker-release.yml

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

1111
jobs:
1212
docker-build:
13-
runs-on: [self-hosted, Linux, X64]
13+
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
1616
uses: actions/checkout@v4

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919

2020
jobs:
2121
Lint:
22-
runs-on: [self-hosted, Linux, X64]
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
@@ -55,7 +55,7 @@ jobs:
5555
run: make lint
5656

5757
Test:
58-
runs-on: [self-hosted, Linux, X64]
58+
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout repository
6161
uses: actions/checkout@v4
@@ -82,9 +82,9 @@ jobs:
8282
key: venv-${{ runner.os }}-python-3.13-${{ hashFiles('**/poetry.lock') }}
8383

8484
- name: Install dependencies
85-
run: |
86-
poetry config virtualenvs.in-project true
87-
poetry install --with dev
85+
run: |
86+
poetry config virtualenvs.in-project true
87+
poetry install --with dev
8888
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8989

9090
- name: Run tests

0 commit comments

Comments
 (0)