Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

build:
name: Build charm
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v51.0.0
with:
path-to-charm-directory: .
cache: true
Expand All @@ -92,7 +92,7 @@ jobs:

build-test-charm:
name: Build test charm
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v51.0.0
with:
path-to-charm-directory: tests/integration/test_charm
cache: true
Expand All @@ -106,13 +106,13 @@ jobs:
needs:
- get-track
- build
uses: canonical/data-platform-workflows/.github/workflows/release_charm_pr.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/release_charm_pr.yaml@v51.0.0
with:
track: ${{ needs.get-track.outputs.track }}
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
path-to-charm-directory: .
secrets:
charmhub-token: ${{ secrets.CHARMCRAFT_CREDENTIALS }}
charmhub-token: ${{ secrets.CHARMHUB_TOKEN_EDGE_PR }}
permissions:
actions: read
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
name: Release charm
needs:
- ci-tests
uses: canonical/data-platform-workflows/.github/workflows/release_charm_edge.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/release_charm_edge.yaml@v51.0.0
with:
track: ${{ needs.ci-tests.outputs.track }}
artifact-prefix: ${{ needs.ci-tests.outputs.artifact-prefix }}
path-to-charm-directory: .
secrets:
charmhub-token: ${{ secrets.CHARMCRAFT_CREDENTIALS }}
charmhub-token: ${{ secrets.CHARMHUB_TOKEN_EDGE }}
permissions:
actions: read
contents: write # Needed to create git tags
Loading