Skip to content

Commit 50412e6

Browse files
committed
ci: update workflows and deps versions
Signed-off-by: Zakhar Bessarab <[email protected]>
1 parent 8dce885 commit 50412e6

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,18 @@ jobs:
77
lint:
88
name: 'Lint'
99
runs-on: ubuntu-latest
10-
container:
11-
image: python:3.11-alpine
1210
steps:
1311
- name: 'Checkout'
14-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1513

1614
- name: Cache .venv directory
1715
uses: actions/cache@v3
1816
with:
1917
path: .venv
2018
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
21-
restore-keys: |
22-
${{ runner.os }}-venv-
2319

2420
- name: Lint
2521
run: |
26-
apk add --update --no-cache --virtual build_dependencies gcc musl-dev libffi-dev openssl-dev rust cargo make
2722
make init-venv
2823
2924
make lint

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
release:
1414
runs-on: ubuntu-latest
1515
container:
16-
image: python:3.9-alpine
16+
image: python:3.11-alpine
1717
steps:
1818
- name: checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Publish collection to ansible galaxy
2222
env:

0 commit comments

Comments
 (0)