Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/download-artifact action to v4 (main) #7019

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ jobs:
run: |
tar cvf images.tar /tmp/images
- name: Upload Archive with Docker Images
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Docker Images
path: ./images.tar
Expand All @@ -281,7 +281,7 @@ jobs:
make BUILD_IN_CONTAINER=false cmd/mimir/.uptodate_race
docker save $MIMIR_IMAGE -o ./mimir_race_image
- name: Upload archive with race-enabled Mimir
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Race-enabled Mimir
path: ./mimir_race_image
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
key: integration-${{ matrix.test_group_id }}-go-build-${{ runner.os }}-${{ hashFiles('go.mod', 'go.sum') }}
path: ${{ steps.gocache.outputs.path }}
- name: Download Archive with Docker Images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Docker Images
- name: Extract Docker Images from Archive
Expand All @@ -333,7 +333,7 @@ jobs:
# skopeo will by default load system-specific version of the image (linux/amd64).
skopeo copy oci-archive:/tmp/images/mimirtool.oci "docker-daemon:grafana/mimirtool:$IMAGE_TAG"
- name: Download Archive with Docker Images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Race-enabled Mimir
- name: Load race-enabled mimir into Docker
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:
mkdir -p /go/src/github.com/grafana/mimir
ln -s $GITHUB_WORKSPACE/* /go/src/github.com/grafana/mimir
- name: Download Archive with Docker Images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Docker Images
- name: Extract Docker Images from Archive
Expand Down
Loading