File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 7
7
lint :
8
8
name : ' Lint'
9
9
runs-on : ubuntu-latest
10
- container :
11
- image : python:3.11-alpine
12
10
steps :
13
11
- name : ' Checkout'
14
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
15
13
16
14
- name : Cache .venv directory
17
15
uses : actions/cache@v3
18
16
with :
19
17
path : .venv
20
18
key : ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
21
- restore-keys : |
22
- ${{ runner.os }}-venv-
23
19
24
20
- name : Lint
25
21
run : |
26
- apk add --update --no-cache --virtual build_dependencies gcc musl-dev libffi-dev openssl-dev rust cargo make
27
22
make init-venv
28
23
29
24
make lint
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
release :
14
14
runs-on : ubuntu-latest
15
15
container :
16
- image : python:3.9 -alpine
16
+ image : python:3.11 -alpine
17
17
steps :
18
18
- name : checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Publish collection to ansible galaxy
22
22
env :
You can’t perform that action at this time.
0 commit comments