From 15ded277cd208f9a04da7e9e90e9a674f0b48e0a Mon Sep 17 00:00:00 2001 From: Alexandre DEVELY <12896316+alexandredevely@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:47:23 +0100 Subject: [PATCH] update github actions version --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9964f66..815b8079 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,7 +46,7 @@ jobs: dockerfiles=$(ls -l *.d | grep '^-' | awk -F ' ' '{print $9}' | jq -R -s -c 'split("\n") | map(select(length > 0))') echo "dockerfiles=$dockerfiles" echo "::set-output name=matrix::$dockerfiles" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: artifact-dockerfiles path: "*.d" @@ -71,7 +71,7 @@ jobs: ref: ${{ github.head_ref }} # overwrite previous Dockerfiles - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: artifact-dockerfiles @@ -82,13 +82,13 @@ jobs: cat ${{ matrix.path }} - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} @@ -104,7 +104,7 @@ jobs: env: image: ${{ matrix.path }} imagetag: ${{ github.ref_name || 'main' }} - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: file: ${{ env.image }} context: . @@ -171,7 +171,7 @@ jobs: - name: generate MarkDown files run: node make-docs.js --release "${{ github.head_ref }}" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: artifact-application-md-files path: "*.md"