File tree 4 files changed +14
-14
lines changed
4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 12
12
13
13
steps :
14
14
- name : Checkout repository
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Check that tag and package versions match
18
18
run : |
@@ -47,13 +47,13 @@ jobs:
47
47
48
48
- name : Login to Docker Hub
49
49
id : docker_login
50
- uses : docker/login-action@v2
50
+ uses : docker/login-action@v3
51
51
with :
52
52
username : ${{ secrets.DOCKER_USERNAME }}
53
53
password : ${{ secrets.DOCKER_PASSWORD }}
54
54
55
55
- name : Build and Push current release and latest tag to Docker Hub
56
- uses : docker/build-push-action@v4
56
+ uses : docker/build-push-action@v5
57
57
with :
58
58
context : .
59
59
file : Dockerfile
Original file line number Diff line number Diff line change 8
8
name : gitleaks
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
with :
13
13
fetch-depth : 0
14
14
- uses : gitleaks/gitleaks-action@v2
Original file line number Diff line number Diff line change @@ -17,23 +17,23 @@ jobs:
17
17
18
18
steps :
19
19
- name : Checkout Code
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
with :
22
22
fetch-depth : 0
23
23
24
24
- name : Set up Python
25
- uses : actions/setup-python@v4
25
+ uses : actions/setup-python@v5
26
26
with :
27
- python-version : " 3.10 "
27
+ python-version : " 3.11 "
28
28
29
29
- name : Install poetry
30
- uses : abatilo/actions-poetry@v2.3.0
30
+ uses : abatilo/actions-poetry@v3
31
31
32
32
- name : Configure poetry
33
33
run : python -m poetry config virtualenvs.in-project true
34
34
35
35
- name : Set up cache
36
- uses : actions/cache@v2
36
+ uses : actions/cache@v4
37
37
id : cache
38
38
with :
39
39
path : .venv
Original file line number Diff line number Diff line change 17
17
18
18
strategy :
19
19
matrix :
20
- python_version : ['3.10 ']
20
+ python_version : ['3.11 ']
21
21
22
22
services :
23
23
postgres :
@@ -34,15 +34,15 @@ jobs:
34
34
35
35
steps :
36
36
- name : Checkout
37
- uses : actions/checkout@v3
37
+ uses : actions/checkout@v4
38
38
39
39
- name : Set up Python ${{ matrix.python_version }}
40
- uses : actions/setup-python@v4
40
+ uses : actions/setup-python@v5
41
41
with :
42
42
python-version : ${{ matrix.python_version }}
43
43
44
44
- name : Install poetry
45
- uses : abatilo/actions-poetry@v2.3.0
45
+ uses : abatilo/actions-poetry@v3
46
46
47
47
- name : Install dependencies
48
48
run : poetry install
73
73
74
74
steps :
75
75
- name : Checkout
76
- uses : actions/checkout@v3
76
+ uses : actions/checkout@v4
77
77
78
78
- name : Check that we can build docker container image
79
79
run : docker build .
You can’t perform that action at this time.
0 commit comments