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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
lint:
name: Lint
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v35.0.4
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v48.0.4
permissions:
contents: read

Expand All @@ -32,7 +32,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- run: |
Expand All @@ -46,13 +46,13 @@ jobs:

terraform-lint:
name: Terraform - Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install terraform snap
Expand All @@ -75,13 +75,13 @@ jobs:
name: Terraform - Run terraform tests
needs:
- terraform-lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions:
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install terraform snap
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- .
- tests/integration/application
name: Build charm | ${{ matrix.path }}
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v35.0.4
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v48.0.4
with:
path-to-charm-directory: ${{ matrix.path }}
cache: true
Expand All @@ -132,7 +132,7 @@ jobs:
needs:
- lint
- build
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v35.0.4
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v48.0.4
with:
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
cloud: lxd
Expand Down
4 changes: 2 additions & 2 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@v35.0.4
uses: canonical/data-platform-workflows/.github/workflows/tag_charm_edge.yaml@v48.0.4
with:
track: "8"
permissions:
Expand All @@ -28,7 +28,7 @@ jobs:
needs:
- ci-tests
- tag
uses: canonical/data-platform-workflows/.github/workflows/release_charm_edge.yaml@v35.0.4
uses: canonical/data-platform-workflows/.github/workflows/release_charm_edge.yaml@v48.0.4
with:
track: ${{ needs.tag.outputs.track }}
artifact-prefix: ${{ needs.ci-tests.outputs.artifact-prefix }}
Expand Down
Loading