Skip to content

Commit

Permalink
ci: update workflows and deps versions
Browse files Browse the repository at this point in the history
Signed-off-by: Zakhar Bessarab <[email protected]>
  • Loading branch information
zekker6 committed Feb 22, 2024
1 parent 8dce885 commit 50412e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,18 @@ jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
container:
image: python:3.11-alpine
steps:
- name: 'Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache .venv directory
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-venv-

- name: Lint
run: |
apk add --update --no-cache --virtual build_dependencies gcc musl-dev libffi-dev openssl-dev rust cargo make
make init-venv
make lint
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
release:
runs-on: ubuntu-latest
container:
image: python:3.9-alpine
image: python:3.11-alpine
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Publish collection to ansible galaxy
env:
Expand Down

0 comments on commit 50412e6

Please sign in to comment.