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/bot_pr_approval.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: contains(fromJSON('["dependabot[bot]", "renovate[bot]", "github-actions[bot]", "is-devops-bot"]'), github.event.pull_request.user.login)
uses: actions/github-script@v8.0.0
uses: actions/github-script@v9
with:
script: |
github.rest.pulls.createReview({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/charmbuild_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-python@v6.2.0
with:
python-version: "3.12"
python-version: "3.14"
- name: Install ruff
run: pip install ruff
- name: Run ruff check
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-python@v6.2.0
with:
python-version: "3.12"
python-version: "3.14"
- name: Install package and test dependencies
run: pip install -e ".[dev]"
- name: Run pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
repository: ${{ needs.setup-env.outputs.REPO_FULL_NAME }}
run-id: ${{ needs.setup-env.outputs.RUN_ID }}
- name: Comment on PR
uses: actions/github-script@v8.0.0
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comment_contributing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v6.0.2
- name: Comment on PR
uses: actions/github-script@v8.0.0
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# Cache lychee results (e.g. to avoid hitting rate limits)
- name: Restore lychee cache
id: restore-cache
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
${{ inputs.linkcheck-files }}

- name: Save lychee cache
uses: actions/cache/save@v5.0.4
uses: actions/cache/save@v5.0.5
if: always()
with:
path: .lycheecache
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 @@ -207,7 +207,7 @@ jobs:
matrix:
build: ${{ fromJSON(needs.plan.outputs.plan).build }}
steps:
- uses: canonical/setup-lxd@v0.1.3
- uses: canonical/setup-lxd@v1
- name: Set LXC security nesting
if: ${{ inputs.rockcraft-enable-security-nesting }}
run: |
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
- name: Get workflow version
id: workflow-version
if: ${{ matrix.build.type == 'charm' }}
uses: canonical/get-workflow-version-action@v1.0.1
uses: canonical/get-workflow-version-action@v1.0.3
with:
repository-name: canonical/operator-workflows
file-name: integration_test.yaml
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
docker image save -o ${{ matrix.scan.file }} ${{ matrix.scan.image }}
- name: Run Github Trivy Image Action (temporarily disabled)
if: ${{ false }}
uses: aquasecurity/trivy-action@0.35.0
uses: aquasecurity/trivy-action@v0.36.0
with:
input: ${{ matrix.scan.file }}
trivy-config: ${{ inputs.trivy-image-config }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test_run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
GITHUB_ENV_FILE.close()
- name: Setup Astral UV
if: ${{ inputs.with-uv }}
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.1.0
with:
python-version: ${{ env.python-version }}
- name: Install tox with UV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:
# Test with tox-uv and python setup by UV
- name: Setup Astral UV
if: ${{ inputs.with-uv }}
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
with:
python-version: ${{ env.python-version }}

Expand All @@ -329,7 +329,7 @@ jobs:
tox --result-json=test-result.json | tee $STDOUT_LOG ; test ${PIPESTATUS[0]} -eq 0
- name: Export test report
if: always() && !cancelled()
uses: actions/github-script@v8.0.0
uses: actions/github-script@v9
with:
script: |
const no_color = (text) => {
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.14.1
24.15.0
Loading
Loading