diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7071f5c3..a3da2862 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -76,7 +76,7 @@ jobs: steps: - name: Get releasebranch.txt artifact from Release pipeline if: github.event_name == 'workflow_run' - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: releasebranch.txt run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/push-to-registry.yml b/.github/workflows/push-to-registry.yml index c1b8a8bf..ba734ebe 100644 --- a/.github/workflows/push-to-registry.yml +++ b/.github/workflows/push-to-registry.yml @@ -65,10 +65,10 @@ jobs: echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Log in to Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -76,7 +76,7 @@ jobs: - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | @@ -84,7 +84,7 @@ jobs: type=raw,value=${{ steps.version.outputs.version }} - name: Build and push Docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./docker-image/Dockerfiles/Dockerfile diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4987faf1..04cb1e80 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: git push origin "$BRANCH" echo "$BRANCH" > releasebranch.txt - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: releasebranch.txt path: releasebranch.txt diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d575343..9146f2d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -97,7 +97,7 @@ jobs: - name: Upload coverage reports if: ${{ matrix.node == env.MAIN_NODE_VER }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage path: ./coverage/coverage-final.json