1
0
Эх сурвалжийг харах

Update auto_build_docker_container.yml

update action version
nili 2 жил өмнө
parent
commit
c190efe665

+ 8 - 8
.github/workflows/auto_build_docker_container.yml

@@ -18,25 +18,25 @@ jobs:
     steps:
 
       - name: Check Out Repo 
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
 
 #      - name: Login to GHCR
 #        if: github.event_name != 'pull_request'
-#        uses: docker/login-action@v2
+#        uses: docker/login-action@v3
 #        with:
 #          registry: ghcr.io
 #          username: ${{ github.repository_owner }}
 #          password: ${{ secrets.GITHUB_TOKEN }}
 
       - name: Login to Docker Hub
-        uses: docker/login-action@v2
+        uses: docker/login-action@v3
         with:
           username: ${{ secrets.DOCKER_USERNAME }}
           password: ${{ secrets.DOCKER_PASSWORD }}
 
       - name: Docker meta
         id: meta
-        uses: docker/metadata-action@v4
+        uses: docker/metadata-action@v5
         with:
           # list of Docker images to use as base name for tags
           images: |
@@ -57,15 +57,15 @@ jobs:
 
 
       - name: Set up QEMU
-        uses: docker/setup-qemu-action@v2 
+        uses: docker/setup-qemu-action@v3
 
       - name: Set up Docker Buildx
         id: buildx
-        uses: docker/setup-buildx-action@v2
+        uses: docker/setup-buildx-action@v3
 
       - name: Build and push all
         id: docker_build_all
-        uses: docker/build-push-action@v4
+        uses: docker/build-push-action@v5
         with:
           context: ./dockerfile/
           file: ./dockerfile/Dockerfile
@@ -74,4 +74,4 @@ jobs:
           tags: ${{ steps.meta.outputs.tags }}
           labels: ${{ steps.meta.outputs.labels }}
       - name: all Image digest
-        run: echo ${{ steps.docker_build_all.outputs.digest }}
+        run: echo ${{ steps.docker_build_all.outputs.digest }}

粤ICP备19079148号