Skip to content

Commit

Permalink
ci: pin python version to 3.11 (#378)
Browse files Browse the repository at this point in the history
##### SUMMARY

This is an attempt to fix the linting job:
https://github.com/ansible-collections/hetzner.hcloud/actions/runs/6692855477/job/18182866932

Run on python 3.11 until the following ticket is solved:
aio-libs/aiohttp#7675
  • Loading branch information
jooola authored Oct 30, 2023
1 parent 96bbcfc commit de1eed9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.x
python-version: "3.11"
cache: pip
cache-dependency-path: requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.x
python-version: "3.11"
- name: Install dependencies
run: pip install antsibull-changelog

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.x
python-version: "3.11"

- name: Ensure vendors are not diverging
run: make vendor-check

0 comments on commit de1eed9

Please sign in to comment.