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
2 changes: 1 addition & 1 deletion .github/workflows/check_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ on:
jobs:
check-pr:
name: Check pull request
uses: canonical/data-platform-workflows/.github/workflows/check_charm_pr.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/check_charm_pr.yaml@v50.2.1
permissions: {}
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
lint-workflows:
name: Lint .github/workflows
uses: canonical/data-platform-workflows/.github/workflows/lint_workflows.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/lint_workflows.yaml@v50.2.1
permissions:
contents: read

Expand All @@ -30,7 +30,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Install tox & poetry
Expand All @@ -48,7 +48,7 @@ jobs:
permissions: {}
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -71,7 +71,7 @@ jobs:
permissions: {}
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- .
- tests/integration/application
name: Build charm | ${{ matrix.path }}
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v50.2.1
with:
path-to-charm-directory: ${{ matrix.path }}
cache: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions: {}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up environment
Expand Down Expand Up @@ -92,11 +92,11 @@ jobs:
run: df --human-readable
- name: Checkout
timeout-minutes: 3
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Setup python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Set up environment
Expand All @@ -109,7 +109,7 @@ jobs:
go install github.com/canonical/spread/cmd/spread@latest
- name: Download packed charm(s)
timeout-minutes: 5
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: ${{ inputs.artifact-prefix }}-*
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ on:
jobs:
promote:
name: Promote charm revisions
uses: canonical/data-platform-workflows/.github/workflows/_promote_charms.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/_promote_charms.yaml@v50.2.1
with:
revisions: ${{ inputs.revisions }}
track: ${{ inputs.track }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
tag:
name: Create charm refresh compatibility version git tag
uses: canonical/data-platform-workflows/.github/workflows/tag_charm_edge.yaml@v49.0.1
uses: canonical/data-platform-workflows/.github/workflows/tag_charm_edge.yaml@v50.2.1
with:
track: "8"
permissions:
Expand All @@ -29,7 +29,7 @@ jobs:
needs:
- ci-tests
- tag
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@v50.2.1
with:
track: ${{ needs.tag.outputs.track }}
artifact-prefix: ${{ needs.ci-tests.outputs.artifact-prefix }}
Expand All @@ -54,7 +54,7 @@ jobs:
RELEASES_BRANCH: releases
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -73,7 +73,7 @@ jobs:
echo "pip-version=${VERSION}" >> "${GITHUB_OUTPUT}"

- name: Checkout releases
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: true
ref: ${{ env.RELEASES_BRANCH }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Get charm name
Expand Down
Loading