Skip to content

Commit

Permalink
ci: update version for download-artifact (#1796)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
blumamir authored Nov 20, 2024
1 parent b25d07c commit dcb993a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -115,15 +115,15 @@ 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: |
docker load -i odigos-images.tar
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: |
Expand Down

0 comments on commit dcb993a

Please sign in to comment.