Skip to content

Commit c73d926

Browse files
committed
Update GitHub Actions
1 parent cb2ab38 commit c73d926

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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

.github/workflows/gitleaks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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

.github/workflows/linter.yml

+5-5
Original file line numberDiff line numberDiff 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
3333
run: python -m 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

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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
@@ -73,7 +73,7 @@ jobs:
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 .

0 commit comments

Comments
 (0)