From 5de9e44c7768d28d7483e56947a4c250436cecda Mon Sep 17 00:00:00 2001 From: Guillaume Boutry Date: Mon, 1 Jul 2024 10:18:29 +0200 Subject: [PATCH] Use skopeo from main archive Main archive's skopeo is much more recent than the snap. --- .github/actions/publish-rock/action.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/publish-rock/action.yaml b/.github/actions/publish-rock/action.yaml index a64f27a..f4ab0ad 100644 --- a/.github/actions/publish-rock/action.yaml +++ b/.github/actions/publish-rock/action.yaml @@ -14,14 +14,16 @@ runs: using: composite steps: - name: Log in to the Container registry - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.2.0 with: registry: ghcr.io username: ${{ inputs.username }} password: ${{ inputs.password }} - name: Install skopeo shell: bash - run: sudo snap install --devmode --channel edge skopeo + run: | + sudo apt update + sudo apt install -y skopeo - name: Install yq shell: bash run: sudo snap install yq