Skip to content

Commit 1d3513c

Browse files
authored
Merge pull request #502 from PROCOLLAB-github/fix/change_contact_infromation
Изменена версия кэширования, с третьей версией не работает деплой
2 parents 1461516 + 2412287 commit 1d3513c

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/django-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ 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

.github/workflows/release-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ 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

@@ -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)