From d98a2faa5d0e1701a1f93b8bc4e927f0db68511d Mon Sep 17 00:00:00 2001 From: Manos Vlassis <57320708+mvlassis@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:01:10 +0300 Subject: [PATCH 1/2] Pin charmcraft channel to `3.1/stable` (#541) * Pin charmcraft channel * Add comment above the pinning to link to the proper issue * Pin to 3.x instead of 3.1 which doesn't exist as a track --- .github/workflows/integrate.yaml | 6 ++++-- .github/workflows/publish.yaml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 111f6af2..505d1c7f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -72,7 +72,8 @@ jobs: channel: ${{ matrix.microk8s-versions }} microk8s-addons: "dns hostpath-storage rbac metallb:10.64.140.43-10.64.140.49" juju-channel: 3.4/stable - charmcraft-channel: latest/candidate + # Pinned to 3.x/stable due to https://github.com/canonical/charmcraft/issues/1845 + charmcraft-channel: 3.x/stable - name: Run integration tests run: | @@ -139,7 +140,8 @@ jobs: channel: ${{ matrix.microk8s-versions }} microk8s-addons: "dns hostpath-storage rbac metallb:10.64.140.43-10.64.140.49" juju-channel: 3.4/stable - charmcraft-channel: latest/candidate + # Pinned to 3.x/stable due to https://github.com/canonical/charmcraft/issues/1845 + charmcraft-channel: 3.x/stable - name: Run observability integration tests run: | diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 98d1eefc..bb39aeee 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -91,4 +91,5 @@ jobs: charm-path: ${{ matrix.charm-path }} channel: ${{ steps.parse-inputs.outputs.destination_channel }} tag-prefix: ${{ steps.parse-inputs.outputs.tag_prefix }} - charmcraft-channel: latest/candidate + # Pinned to 3.x/stable due to https://github.com/canonical/charmcraft/issues/1845 + charmcraft-channel: 3.x/stable From b40967782c2202148d32d050fa9abb837016a9ec Mon Sep 17 00:00:00 2001 From: mvlassis Date: Tue, 3 Sep 2024 17:48:55 +0300 Subject: [PATCH 2/2] KF-6195