We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 974e2ca commit 611063dCopy full SHA for 611063d
.github/workflows/build-docker-images.yml
@@ -11,20 +11,20 @@ jobs:
11
12
steps:
13
- name: Checkout repository
14
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
15
16
- name: Set up Docker Buildx
17
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v2
18
19
- name: Log in to GitHub Container Registry
20
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
21
with:
22
registry: ghcr.io
23
username: ${{ github.repository_owner }}
24
password: ${{ secrets.GITHUB_TOKEN }}
25
26
- name: Build and push backend Docker image
27
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v3
28
29
context: ./backend
30
file: ./backend/Dockerfile
0 commit comments