Skip to content

Commit

Permalink
Merge branch 'main' into improvement/PTFE-790-delete-runner-method
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinS926 authored Sep 6, 2023
2 parents e5f4466 + 51c1448 commit 4874f8b
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 247 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Poetry
run: |
pipx install poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: dependabot/fetch-metadata@v1

- name: checkout
uses: actions/checkout@v3.4.0
uses: actions/checkout@v4
with:
lfs: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v3
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
needs: docker-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: helm/kind-action@v1
- name: Edit the runner-manager image
working-directory: manifests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
REDIS_OM_URL: redis://localhost:6379/0
GITHUB_BASE_URL: http://localhost:4010
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Boot compose services
run: docker compose --profile tests up --build --detach
- run: pipx install poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trunk-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
Expand Down
271 changes: 38 additions & 233 deletions poetry.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ pyyaml = "^6.0.1"
redis = "^4.6.0"
docker = "^6.1.3"
google-cloud-compute = "^1.13.0"
boto3 = "^1.28.38"
botocore = "^1.31.40"
boto3-stubs = { extras = ["ec2"], version = "^1.28.40" }
boto3 = "^1.28.40"
botocore = "^1.31.41"
boto3-stubs = { extras = ["ec2"], version = "^1.28.41" }
githubkit = { git = "https://github.com/yanyongyu/githubkit", rev = "a4275ac3d3babd64061f3693353db740e6a8e892" }
rq-scheduler = "^0.13.1"

Expand All @@ -30,14 +30,14 @@ rq-scheduler = "^0.13.1"
optional = true

[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.2.6"
mkdocs-material = "^9.2.8"
mkdocs = "^1.4.2"

[tool.poetry.group.dev.dependencies]
connexion = "^2.14.2"
pytest = "^7.4.0"
pytest = "^7.4.1"
pytest-cov = "^4.0.0"
hypothesis = "^6.83.0"
hypothesis = "^6.84.0"
pyright = "^1.1.325"
black = "^23.7.0"
isort = "^5.12.0"
Expand Down

0 comments on commit 4874f8b

Please sign in to comment.