diff --git a/.github/actions/docker_build_and_push/action.yml b/.github/actions/docker_build_and_push/action.yml index 93f7b994..9292af7b 100644 --- a/.github/actions/docker_build_and_push/action.yml +++ b/.github/actions/docker_build_and_push/action.yml @@ -22,9 +22,6 @@ inputs: runs: using: "composite" steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/build_deploy_backend.yml b/.github/workflows/build_deploy_backend.yml index 3d654afa..a7901609 100644 --- a/.github/workflows/build_deploy_backend.yml +++ b/.github/workflows/build_deploy_backend.yml @@ -86,7 +86,7 @@ jobs: matrix: host: ${{ fromJson(needs.deploy.outputs.DROPLET_IPS) }} steps: - - name: Execute docker system prune on ${{ matrix.service }} + - name: Execute docker system prune on ${{ matrix.host }} uses: unstructuredstudio/zubhub/.github/actions/ssh_action@master with: host: ${{ matrix.host }} diff --git a/.github/workflows/build_deploy_frontend.yml b/.github/workflows/build_deploy_frontend.yml index 7cc7c1f4..ff0610be 100644 --- a/.github/workflows/build_deploy_frontend.yml +++ b/.github/workflows/build_deploy_frontend.yml @@ -56,7 +56,7 @@ jobs: needs: deploy runs-on: ubuntu-latest steps: - - name: Execute docker system prune on frontend host + - name: Execute docker system prune on ${{ vars.DO_FRONTEND_HOST }} uses: unstructuredstudio/zubhub/.github/actions/ssh_action@master with: host: ${{ vars.DO_FRONTEND_HOST }} diff --git a/.github/workflows/create_destroy_test_vm.yaml b/.github/workflows/create_destroy_test_vm.yaml index da79d484..05fd2e49 100644 --- a/.github/workflows/create_destroy_test_vm.yaml +++ b/.github/workflows/create_destroy_test_vm.yaml @@ -309,7 +309,7 @@ jobs: PR_NUMBER=${{ github.event.pull_request.number }} if [[ -z "$PR_NUMBER" ]] ; then # github.event.pull_request.number is not available in closed event - sudo apt-get install jq -y + sudo apt-get install jq -y # TODO: remove this since jq. seems jq is installed by default PR_NUMBER=$(curl --silent --show-error -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ https://api.github.com/repos/${{ github.repository }}/commits/${{ github.sha }}/pulls | \ jq -r '.[0].number')