Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Prepare Rock
uses: canonical/craft-actions/rockcraft-pack@main
id: rockcraft
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: rock
path: ${{ steps.rockcraft.outputs.rock }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
sudo rm -rf "$AGENT_TOOLSDIRECTORY"

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: rock

Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
./tests/scripts/github-action-helper.sh create_partitions_for_osds

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: rock

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/collect-logs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
tests/scripts/collect-logs.sh

- name: Upload canary test result
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.name }}
path: /home/runner/work/test
2 changes: 1 addition & 1 deletion .github/workflows/publish_edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
for tag in $TAGS; do
echo "$tag"
docker image ls -a
docker import ${{ steps.rockcraft.outputs.rock }} $tag
rockcraft.skopeo --insecure-policy copy oci-archive:${{ steps.rockcraft.outputs.rock }} docker-daemon:$tag
done
docker image ls -a
sleep 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_hotfix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
for tag in $TAGS; do
echo "$tag"
docker image ls -a
docker import ${{ steps.rockcraft.outputs.rock }} $tag
rockcraft.skopeo --insecure-policy copy oci-archive:${{ steps.rockcraft.outputs.rock }} docker-daemon:$tag
done
docker image ls -a
sleep 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
for tag in $TAGS; do
echo "$tag"
docker image ls -a
docker import ${{ steps.rockcraft.outputs.rock }} $tag
rockcraft.skopeo --insecure-policy copy oci-archive:${{ steps.rockcraft.outputs.rock }} docker-daemon:$tag
done
docker image ls -a
sleep 10
Expand Down
Loading