Skip to content

Commit 9c74c1a

Browse files
Update data-platform-workflows to v21.0.1 (#315)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [allure-pytest-collection-report](https://togithub.com/canonical/data-platform-workflows) | integration | patch | `v21.0.0` -> `v21.0.1` | | [canonical/data-platform-workflows](https://togithub.com/canonical/data-platform-workflows) | action | patch | `v21.0.0` -> `v21.0.1` | | [pytest-operator-cache](https://togithub.com/canonical/data-platform-workflows) | integration | patch | `v21.0.0` -> `v21.0.1` | | [pytest-operator-groups](https://togithub.com/canonical/data-platform-workflows) | integration | patch | `v21.0.0` -> `v21.0.1` | --- ### Release Notes <details> <summary>canonical/data-platform-workflows (allure-pytest-collection-report)</summary> ### [`v21.0.1`](https://togithub.com/canonical/data-platform-workflows/releases/tag/v21.0.1) [Compare Source](https://togithub.com/canonical/data-platform-workflows/compare/v21.0.0...v21.0.1) ##### What's Changed - patch(build_\*.yaml): Switch ARM runner image by [@&#8203;carlcsaposs-canonical](https://togithub.com/carlcsaposs-canonical) in [https://github.com/canonical/data-platform-workflows/pull/233](https://togithub.com/canonical/data-platform-workflows/pull/233) **Full Changelog**: canonical/data-platform-workflows@v21.0.0...v21.0.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 1am and before 3am every weekday" in timezone Etc/UTC, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/canonical/mysql-router-k8s-operator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41Ni4wIiwidXBkYXRlZEluVmVyIjoiMzguNTYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 5edee07 commit 9c74c1a

File tree

5 files changed

+26
-15
lines changed

5 files changed

+26
-15
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
build:
6666
name: Build charm
67-
uses: canonical/data-platform-workflows/.github/workflows/[email protected].0
67+
uses: canonical/data-platform-workflows/.github/workflows/[email protected].1
6868
with:
6969
cache: true
7070

@@ -96,7 +96,7 @@ jobs:
9696
- lint
9797
- unit-test
9898
- build
99-
uses: canonical/data-platform-workflows/.github/workflows/[email protected].0
99+
uses: canonical/data-platform-workflows/.github/workflows/[email protected].1
100100
with:
101101
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
102102
architecture: ${{ matrix.architecture }}

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
build:
1717
name: Build charm
18-
uses: canonical/data-platform-workflows/.github/workflows/[email protected].0
18+
uses: canonical/data-platform-workflows/.github/workflows/[email protected].1
1919

2020
release:
2121
name: Release charm
2222
needs:
2323
- ci-tests
2424
- build
25-
uses: canonical/data-platform-workflows/.github/workflows/[email protected].0
25+
uses: canonical/data-platform-workflows/.github/workflows/[email protected].1
2626
with:
2727
channel: 8.0/edge
2828
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}

.github/workflows/sync_docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
sync-docs:
1212
name: Sync docs from Discourse
13-
uses: canonical/data-platform-workflows/.github/workflows/[email protected].0
13+
uses: canonical/data-platform-workflows/.github/workflows/[email protected].1
1414
with:
1515
reviewers: a-velasco,izmalk
1616
permissions:

poetry.lock

+18-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ ops = "^2.9.0"
5151
[tool.poetry.group.integration.dependencies]
5252
pytest = "^8.2.2"
5353
pytest-operator = "^0.35.0"
54-
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
55-
pytest-operator-groups = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/pytest_operator_groups"}
54+
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.1", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
55+
pytest-operator-groups = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.1", subdirectory = "python/pytest_plugins/pytest_operator_groups"}
5656
juju = "^3.5.2.0"
5757
mysql-connector-python = "~8.0.33"
5858
pyyaml = "^6.0.1"
5959
tenacity = "^8.5.0"
6060
allure-pytest = "^2.13.5"
61-
allure-pytest-collection-report = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/allure_pytest_collection_report"}
61+
allure-pytest-collection-report = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.1", subdirectory = "python/pytest_plugins/allure_pytest_collection_report"}
6262

6363

6464
[tool.coverage.run]

0 commit comments

Comments
 (0)