Skip to content

Commit 1bcee9a

Browse files
committed
Merge branch 'main' into fix/966-custom-token-terraform-docs
2 parents b30a206 + 9374dab commit 1bcee9a

18 files changed

Lines changed: 496 additions & 577 deletions

.github/workflows/allure_report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
# The `gh-pages` branch is used to host the Allure report site.
4747
# With every workflow run, the workflow creates a new folder with the run_number and stores the test results there
4848
- name: Download fallback test results
49-
uses: actions/download-artifact@v8.0.0
49+
uses: actions/download-artifact@v8.0.1
5050
with:
5151
path: allure-collection-fallback-results/
5252
pattern: allure-fallback-results*
5353
merge-multiple: true
5454
- name: Download actual test results
55-
uses: actions/download-artifact@v8.0.0
55+
uses: actions/download-artifact@v8.0.1
5656
with:
5757
path: allure-results/
5858
pattern: allure-results*

.github/workflows/comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: ${{ needs.setup-env.outputs.IS_PR }}
6060
steps:
6161
- name: Download artifacts
62-
uses: actions/download-artifact@v8.0.0
62+
uses: actions/download-artifact@v8.0.1
6363
with:
6464
pattern: "${{ env.ARTIFACT_NAME }}-*"
6565
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/integration_test.yaml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,6 @@ on:
7676
description: Rockcraft channel to use for the integration test
7777
type: string
7878
default: latest/stable
79-
rockcraft-ref:
80-
description: Used in conjunction with rockcraft-repository to pull and build rockcraft from source instead of using snapstore version.
81-
type: string
82-
default: ""
83-
rockcraft-repository:
84-
description: Pull and build rockcraft from source instead of using snapstore version (this means that the rockcraft-channel input will be ignored).
85-
type: string
86-
default: ""
8779
rockcraft-enable-security-nesting:
8880
description: Set security.nesting=true on the rockcraft lxc project to allow for nested containers.
8981
type: boolean
@@ -288,8 +280,6 @@ jobs:
288280
charmcraft-channel: ${{ inputs.charmcraft-channel }}
289281
github-token: ${{ secrets.GITHUB_TOKEN }}
290282
rockcraft-channel: ${{ inputs.rockcraft-channel }}
291-
rockcraft-ref: ${{ inputs.rockcraft-ref }}
292-
rockcraft-repository: ${{ inputs.rockcraft-repository }}
293283

294284
plan-scan:
295285
name: Plan Image Scanning
@@ -321,7 +311,7 @@ jobs:
321311
cp -rp $TEMP_DIR/. .
322312
rm -rf $TEMP_DIR
323313
ls -lah
324-
- uses: actions/download-artifact@v8.0.0
314+
- uses: actions/download-artifact@v8.0.1
325315
if: matrix.scan.artifact != ''
326316
with:
327317
name: ${{ matrix.scan.artifact }}
@@ -338,7 +328,8 @@ jobs:
338328
run: |
339329
docker image pull ${{ matrix.scan.image }}
340330
docker image save -o ${{ matrix.scan.file }} ${{ matrix.scan.image }}
341-
- name: Run Github Trivy Image Action
331+
- name: Run Github Trivy Image Action (temporarily disabled)
332+
if: ${{ false }}
342333
uses: aquasecurity/trivy-action@0.35.0
343334
with:
344335
input: ${{ matrix.scan.file }}
@@ -413,7 +404,6 @@ jobs:
413404
provider: ${{ inputs.provider }}
414405
python-version: ${{ inputs.python-version }}
415406
use-canonical-k8s: ${{ inputs.use-canonical-k8s }}
416-
registry: ghcr.io
417407
runs-on: ${{ inputs.runs-on || 'ubuntu-24.04' }}
418408
self-hosted-runner-arch: ${{ inputs.self-hosted-runner-arch }}
419409
self-hosted-runner-image: ${{ inputs.self-hosted-runner-image }}

.github/workflows/integration_test_run.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ on:
6363
description: Microk8s provider add-ons override. A minimum set of addons (the defaults) must be enabled.
6464
type: string
6565
default: "dns ingress rbac storage"
66-
registry:
67-
type: string
68-
description: Registry to push the built images
69-
default: ""
7066
runs-on:
7167
type: string
7268
description: Image of the runner to run the test job. This gets ignored if self-hosted-runner is set to true.
@@ -232,7 +228,7 @@ jobs:
232228
GITHUB_ENV_FILE.close()
233229
- name: Setup Astral UV
234230
if: ${{ inputs.with-uv }}
235-
uses: astral-sh/setup-uv@v7.3.1
231+
uses: astral-sh/setup-uv@v7.5.0
236232
with:
237233
python-version: ${{ env.python-version }}
238234
- name: Install tox with UV
@@ -488,8 +484,8 @@ jobs:
488484
- name: Run k6 load tests
489485
if: ${{ inputs.load-test-enabled }}
490486
run: k6 run load_tests/load-test.js ${{ inputs.load-test-run-args }}
491-
- name: Run Github Trivy FS Action
492-
if: ${{ inputs.trivy-fs-enabled }}
487+
- name: Run Github Trivy FS Action (temporarily disabled)
488+
if: ${{ false }}
493489
uses: aquasecurity/trivy-action@0.35.0
494490
with:
495491
scan-type: "fs"

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
steps:
255255
- uses: actions/checkout@v6.0.2
256256
- name: Setup Tflint
257-
uses: terraform-linters/setup-tflint@v6.2.1
257+
uses: terraform-linters/setup-tflint@v6.2.2
258258
with:
259259
tflint_wrapper_enabled: true
260260
- name: Run Tflint

dist/build/index.js

Lines changed: 5 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/build/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/get-plan/index.js

Lines changed: 21 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/get-plan/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/publish/index.js

Lines changed: 36 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)