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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 @@ -43,12 +43,12 @@ jobs:

terraform-lint:
name: Terraform - Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions: {}
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -72,12 +72,12 @@ jobs:
name: Terraform - Run terraform tests
needs:
- terraform-lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions: {}
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down
6 changes: 3 additions & 3 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,7 +92,7 @@ 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
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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