We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b08567 commit b656d70Copy full SHA for b656d70
1 file changed
.github/workflows/app.yml
@@ -11,26 +11,24 @@ jobs:
11
steps:
12
13
- name: Checkout
14
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
15
16
- name: Set up Docker Buildx
17
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v3
18
19
- name: Log in to the Container registry
20
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
21
with:
22
registry: ghcr.io
23
username: ${{ github.actor }}
24
password: ${{ secrets.GITHUB_TOKEN }}
25
26
- name: Build and push Docker image
27
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v6
28
29
context: .
30
file: Dockerfile
31
push: true
32
platforms: linux/arm64,linux/arm/v8,linux/amd64
33
tags: |
34
ghcr.io/csse6400/csse6400-cloud-testing:latest
35
-
36
0 commit comments