From dcb993abcf25ce71257b9d504a24862cdee3bb9f Mon Sep 17 00:00:00 2001 From: Amir Blum Date: Wed, 20 Nov 2024 15:20:37 +0200 Subject: [PATCH] ci: update version for download-artifact (#1796) Get rid of these warnings in odigos CI: > build-odigos-imagesThe following actions use a deprecated Node.js version and will be forced to run on node20: actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default --- .github/workflows/e2e.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 3d99e82ff..d205372f2 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -33,7 +33,7 @@ jobs: go build -tags=embed_manifests -o odigos - name: Upload CLI - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: odigos-cli path: cli/odigos @@ -50,7 +50,7 @@ jobs: docker save -o odigos-images.tar $(docker images --format "{{.Repository}}:{{.Tag}}" | grep "odigos") - name: Upload Odigos Images - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: odigos-images path: odigos-images.tar @@ -115,7 +115,7 @@ jobs: yarn install - name: Download and Load Docker Images to Kind - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: odigos-images - run: | @@ -123,7 +123,7 @@ jobs: TAG=e2e-test make load-to-kind - name: Download CLI binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: odigos-cli - run: |