Skip to content

Commit

Permalink
Update to actions/upload-artifact@v3
Browse files Browse the repository at this point in the history
Current error:
Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
  • Loading branch information
Bolukan authored Dec 29, 2024
1 parent 8940373 commit fa70803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_on_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Save Docker image
run: docker save --output image.tar "${IMAGE_TAG}"
- name: Upload Docker image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3 # Updated to v3
with:
name: docker-image
path: image.tar
Expand Down

0 comments on commit fa70803

Please sign in to comment.