Skip to content

Commit 3aa3032

Browse files
update .github/workflows to github-hosted-static-ip
1 parent ccb64c2 commit 3aa3032

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
analyse:
1515
name: Analyse
16-
runs-on: self-hosted
16+
runs-on: github-hosted-static-ip
1717

1818
steps:
1919
- name: Checkout repository

.github/workflows/dependencies_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
test:
1616
name: Check dependencies sync between pyproject.toml and requirements.txt
17-
runs-on: ubuntu-22.04
17+
runs-on: github-hosted-static-ip
1818
steps:
1919
- uses: actions/checkout@master
2020
- name: Set up Python 3.13

.github/workflows/pr_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ on:
1010
jobs:
1111
test:
1212
name: Check code against linter/unit tests
13-
runs-on: ubuntu-22.04
13+
runs-on: github-hosted-static-ip
1414
strategy:
1515
matrix:
16-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
16+
python-version: [3.7.*, 3.8.*, 3.9.*, 3.10.*, 3.11.*, 3.12.*, 3.13.*]
1717
steps:
1818
- uses: actions/checkout@master
1919
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build-publish:
99
name: Build and publish Python distributions
10-
runs-on: ubuntu-22.04
10+
runs-on: github-hosted-static-ip
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Python

.github/workflows/security.yml

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

1111
jobs:
1212
security:
13-
runs-on: self-hosted
13+
runs-on: github-hosted-static-ip
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:

0 commit comments

Comments
 (0)