File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313 steps :
1414 - name : Checkout repository
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v4
1616
1717 - name : Check that tag and package versions match
1818 run : |
@@ -47,13 +47,13 @@ jobs:
4747
4848 - name : Login to Docker Hub
4949 id : docker_login
50- uses : docker/login-action@v2
50+ uses : docker/login-action@v3
5151 with :
5252 username : ${{ secrets.DOCKER_USERNAME }}
5353 password : ${{ secrets.DOCKER_PASSWORD }}
5454
5555 - 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
5757 with :
5858 context : .
5959 file : Dockerfile
Original file line number Diff line number Diff line change 88 name : gitleaks
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v3
11+ - uses : actions/checkout@v4
1212 with :
1313 fetch-depth : 0
1414 - uses : gitleaks/gitleaks-action@v2
Original file line number Diff line number Diff line change @@ -17,23 +17,23 @@ jobs:
1717
1818 steps :
1919 - name : Checkout Code
20- uses : actions/checkout@v3
20+ uses : actions/checkout@v4
2121 with :
2222 fetch-depth : 0
2323
2424 - name : Set up Python
25- uses : actions/setup-python@v4
25+ uses : actions/setup-python@v5
2626 with :
27- python-version : " 3.10 "
27+ python-version : " 3.11 "
2828
2929 - name : Install poetry
30- uses : abatilo/actions-poetry@v2.3.0
30+ uses : abatilo/actions-poetry@v3
3131
3232 - name : Configure poetry
33- run : python -m poetry config virtualenvs.in-project true
33+ run : poetry config virtualenvs.in-project true
3434
3535 - name : Set up cache
36- uses : actions/cache@v2
36+ uses : actions/cache@v4
3737 id : cache
3838 with :
3939 path : .venv
Original file line number Diff line number Diff line change 1717
1818 strategy :
1919 matrix :
20- python_version : ['3.10 ']
20+ python_version : ['3.11 ']
2121
2222 services :
2323 postgres :
@@ -34,15 +34,15 @@ jobs:
3434
3535 steps :
3636 - name : Checkout
37- uses : actions/checkout@v3
37+ uses : actions/checkout@v4
3838
3939 - name : Set up Python ${{ matrix.python_version }}
40- uses : actions/setup-python@v4
40+ uses : actions/setup-python@v5
4141 with :
4242 python-version : ${{ matrix.python_version }}
4343
4444 - name : Install poetry
45- uses : abatilo/actions-poetry@v2.3.0
45+ uses : abatilo/actions-poetry@v3
4646
4747 - name : Install dependencies
4848 run : poetry install
7373
7474 steps :
7575 - name : Checkout
76- uses : actions/checkout@v3
76+ uses : actions/checkout@v4
7777
7878 - name : Check that we can build docker container image
7979 run : docker build .
You can’t perform that action at this time.
0 commit comments