Skip to content

Commit 2412287

Browse files
committed
Cинхронизированы версии actions и poetry во всех workflow
1 parent 5136814 commit 2412287

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/django-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
django-test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up Python 3.11
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.11
2020

2121
- name: cache poetry install
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: ~/.local
2525
key: poetry-1.2.2-0
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: cache deps
3434
id: cache-deps
35-
uses: actions/cache@v2
35+
uses: actions/cache@v3
3636
with:
3737
path: .venv
3838
key: pydeps-${{ hashFiles('**/poetry.lock') }}

.github/workflows/release-ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
name: 'Test before deploy'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414

1515
- name: Set up Python 3.11
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: 3.11
1919

2020
- name: cache poetry install
21-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2222
with:
2323
path: ~/.local
2424
key: poetry-1.2.2-0
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: cache deps
3333
id: cache-deps
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: .venv
3737
key: pydeps-${{ hashFiles('**/poetry.lock') }}
@@ -52,24 +52,24 @@ jobs:
5252
needs: [ test ]
5353
steps:
5454
- name: "Checkout repository"
55-
uses: actions/checkout@v2
55+
uses: actions/checkout@v3
5656

5757
- name: "Set up QEMU"
58-
uses: docker/setup-qemu-action@v1
58+
uses: docker/setup-qemu-action@v3
5959

6060
- name: "Set up Docker Buildx"
61-
uses: docker/setup-buildx-action@v1
61+
uses: docker/setup-buildx-action@v3
6262

6363
- name: "Login to GitHub Registry"
64-
uses: docker/login-action@v1
64+
uses: docker/login-action@v3
6565
with:
6666
registry: ghcr.io
6767
username: ${{ github.actor }}
6868
password: ${{ secrets.GITHUB_TOKEN }}
6969

7070
- name: Docker meta
7171
id: meta
72-
uses: docker/metadata-action@v4
72+
uses: docker/metadata-action@v5
7373
with:
7474
images: ghcr.io/procollab-github/api
7575
flavor: latest=true
@@ -78,7 +78,7 @@ jobs:
7878
type=ref,event=pr
7979
type=semver,pattern={{version}}
8080
- name: Build and push container
81-
uses: docker/build-push-action@v3
81+
uses: docker/build-push-action@v5
8282
with:
8383
context: .
8484
file: Dockerfile

0 commit comments

Comments
 (0)