Skip to content

Commit 0873a43

Browse files
fix(deps): update all dependencies
1 parent 0a7fce7 commit 0873a43

19 files changed

Lines changed: 728 additions & 643 deletions

.github/workflows/allure_report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: always() && !cancelled() && github.run_attempt == '1'
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v6.0.2
16+
uses: actions/checkout@v6.0.3
1717
- name: Create gh-pages branch if not exists
1818
run: |
1919
if ! git ls-remote --exit-code origin gh-pages >/dev/null 2>&1; then
@@ -39,7 +39,7 @@ jobs:
3939
sudo apt-get update
4040
sudo apt-get install ./allure_*.deb -y
4141
- name: Checkout GitHub pages branch
42-
uses: actions/checkout@v6.0.2
42+
uses: actions/checkout@v6.0.3
4343
with:
4444
ref: gh-pages
4545
path: repo/

.github/workflows/auto_update_charm_libs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-24.04
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v6.0.2
27+
uses: actions/checkout@v6.0.3
2828
with:
2929
fetch-depth: 0
3030
- name: Check libs

.github/workflows/bot_pr_approval.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
if: contains(fromJSON('["dependabot[bot]", "renovate[bot]", "github-actions[bot]", "is-devops-bot"]'), github.event.pull_request.user.login)
21-
uses: actions/github-script@v8.0.0
21+
uses: actions/github-script@v9.0.0
2222
with:
2323
script: |
2424
github.rest.pulls.createReview({

.github/workflows/charmbuild_test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
run:
1717
working-directory: charmbuild
1818
steps:
19-
- uses: actions/checkout@v6.0.2
19+
- uses: actions/checkout@v6.0.3
2020
- uses: actions/setup-python@v6.2.0
2121
with:
22-
python-version: "3.12"
22+
python-version: "3.14"
2323
- name: Install ruff
2424
run: pip install ruff
2525
- name: Run ruff check
@@ -34,10 +34,10 @@ jobs:
3434
run:
3535
working-directory: charmbuild
3636
steps:
37-
- uses: actions/checkout@v6.0.2
37+
- uses: actions/checkout@v6.0.3
3838
- uses: actions/setup-python@v6.2.0
3939
with:
40-
python-version: "3.12"
40+
python-version: "3.14"
4141
- name: Install package and test dependencies
4242
run: pip install -e ".[dev]"
4343
- name: Run pytest

.github/workflows/comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
repository: ${{ needs.setup-env.outputs.REPO_FULL_NAME }}
6767
run-id: ${{ needs.setup-env.outputs.RUN_ID }}
6868
- name: Comment on PR
69-
uses: actions/github-script@v8.0.0
69+
uses: actions/github-script@v9.0.0
7070
with:
7171
github-token: ${{ secrets.GITHUB_TOKEN }}
7272
script: |

.github/workflows/comment_contributing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: Comment on PR
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v6.0.2
14+
- uses: actions/checkout@v6.0.3
1515
- name: Comment on PR
16-
uses: actions/github-script@v8.0.0
16+
uses: actions/github-script@v9.0.0
1717
with:
1818
github-token: ${{ secrets.GITHUB_TOKEN }}
1919
script: |

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Check out repository
45-
uses: actions/checkout@v6.0.2
45+
uses: actions/checkout@v6.0.3
4646
- name: Install docutils
4747
run: |
4848
sudo apt-get update -y
4949
sudo apt-get install -y docutils
5050
- name: Run Vale Linter
51-
uses: vale-cli/vale-action@v2.1.1
51+
uses: vale-cli/vale-action@2.1.2
5252
with:
5353
files: ${{ inputs.vale-files }}
5454
vale_flags: ${{ inputs.vale-flags }}
@@ -60,12 +60,12 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Check out repository
63-
uses: actions/checkout@v6.0.2
63+
uses: actions/checkout@v6.0.3
6464

6565
# Cache lychee results (e.g. to avoid hitting rate limits)
6666
- name: Restore lychee cache
6767
id: restore-cache
68-
uses: actions/cache/restore@v5.0.4
68+
uses: actions/cache/restore@v5.0.5
6969
with:
7070
path: .lycheecache
7171
key: cache-lychee-${{ github.sha }}
@@ -98,7 +98,7 @@ jobs:
9898
${{ inputs.linkcheck-files }}
9999
100100
- name: Save lychee cache
101-
uses: actions/cache/save@v5.0.4
101+
uses: actions/cache/save@v5.0.5
102102
if: always()
103103
with:
104104
path: .lycheecache

.github/workflows/docs_spread.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
spread_job: ['${{ inputs.spread-job }}']
3131
steps:
3232
- name: Checkout repo
33-
uses: actions/checkout@v6.0.2
33+
uses: actions/checkout@v6.0.3
3434
with:
3535
fetch-depth: 0
3636
- name: Checkout spread script
37-
uses: actions/checkout@v6.0.2
37+
uses: actions/checkout@v6.0.3
3838
with:
3939
repository: canonical/operator-workflows
4040
sparse-checkout: |

.github/workflows/generate_terraform_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
docs:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v6.0.2
25+
- uses: actions/checkout@v6.0.3
2626

2727
- name: Render terraform docs and push changes back to PR
2828
uses: terraform-docs/gh-actions@v1.4.1

.github/workflows/integration_test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
echo "::error Both runs-on and self-hosted-runner cannot be set at the same time."
176176
exit 1
177177
fi
178-
- uses: actions/checkout@v6.0.2
178+
- uses: actions/checkout@v6.0.3
179179
with:
180180
fetch-depth: 0
181181
- uses: canonical/operator-workflows/internal/plan@main
@@ -207,12 +207,12 @@ jobs:
207207
matrix:
208208
build: ${{ fromJSON(needs.plan.outputs.plan).build }}
209209
steps:
210-
- uses: canonical/setup-lxd@v0.1.3
210+
- uses: canonical/setup-lxd@v1
211211
- name: Set LXC security nesting
212212
if: ${{ inputs.rockcraft-enable-security-nesting }}
213213
run: |
214214
lxc profile set default security.nesting true
215-
- uses: actions/checkout@v6.0.2
215+
- uses: actions/checkout@v6.0.3
216216
- name: Pre-build script
217217
if: ${{ inputs.pre-build-script != '' }}
218218
run: bash -xe ${{ inputs.pre-build-script }}
@@ -250,7 +250,7 @@ jobs:
250250
- name: Get workflow version
251251
id: workflow-version
252252
if: ${{ matrix.build.type == 'charm' }}
253-
uses: canonical/get-workflow-version-action@v1.0.1
253+
uses: canonical/get-workflow-version-action@v1.0.3
254254
with:
255255
repository-name: canonical/operator-workflows
256256
file-name: integration_test.yaml
@@ -294,7 +294,7 @@ jobs:
294294
matrix:
295295
scan: ${{ fromJSON(needs.plan-scan.outputs.scans) }}
296296
steps:
297-
- uses: actions/checkout@v6.0.2
297+
- uses: actions/checkout@v6.0.3
298298
- name: Change directory
299299
run: |
300300
TEMP_DIR=$(mktemp -d)
@@ -312,7 +312,7 @@ jobs:
312312
sudo snap install rockcraft --channel ${{ inputs.rockcraft-channel }} --classic
313313
rockcraft.skopeo copy oci-archive:${{ matrix.scan.file }} docker-archive:${{ matrix.scan.file }}.tar
314314
mv ${{ matrix.scan.file }}.tar ${{ matrix.scan.file }}
315-
- uses: docker/login-action@v4.1.0
315+
- uses: docker/login-action@v4.2.0
316316
with:
317317
registry: ghcr.io
318318
username: ${{ github.actor }}
@@ -323,7 +323,7 @@ jobs:
323323
docker image save -o ${{ matrix.scan.file }} ${{ matrix.scan.image }}
324324
- name: Run Github Trivy Image Action (temporarily disabled)
325325
if: ${{ false }}
326-
uses: aquasecurity/trivy-action@0.35.0
326+
uses: aquasecurity/trivy-action@v0.36.0
327327
with:
328328
input: ${{ matrix.scan.file }}
329329
trivy-config: ${{ inputs.trivy-image-config }}

0 commit comments

Comments
 (0)