Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
analyse:
name: Analyse
runs-on: ubuntu-latest
runs-on: github-hosted-static-ip

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
test:
name: Check dependencies sync between pyproject.toml and requirements.txt
runs-on: ubuntu-22.04
runs-on: github-hosted-static-ip
steps:
- uses: actions/checkout@master
- name: Set up Python 3.13
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ on:
jobs:
test:
name: Check code against linter/unit tests
runs-on: ubuntu-22.04
runs-on: github-hosted-static-ip
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
build-publish:
name: Build and publish Python distributions
runs-on: ubuntu-22.04
runs-on: github-hosted-static-ip
steps:
- uses: actions/checkout@master
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
security:
runs-on: self-hosted
runs-on: github-hosted-static-ip
steps:
- uses: actions/checkout@v4
with:
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[tox]
envlist={py37}-unit,{py38}-unit,{py39}-unit,{py310}-unit,{py311}-unit,{py312}-unit,{py313}-unit
envlist={py38}-unit,{py39}-unit,{py310}-unit,{py311}-unit,{py312}-unit,{py313}-unit
skipsdist=true

[gh-actions]
python =
3.7: py37-unit
3.8: py38-unit
3.9: py39-unit
3.10: py310-unit
Expand All @@ -22,7 +21,7 @@ commands =
[testenv:tf_test]
whitelist_externals=rm
passenv = TERRAFORM_CONFIG
basepython=python3.7
basepython=python3.12
commands =
pip install --upgrade -r test-requirements.txt -e .
rm -f hcl2/lark_parser.py
Expand Down
Loading