From 631da307373e4839294e1de54c45deaf6a2456a6 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Wed, 19 Nov 2025 01:38:54 +0000 Subject: [PATCH 01/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- src/virtualbox/install.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index dbdfc751..20f12800 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.31.38 +export PKG_AWS_VERSION=2.31.39 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index fde611ce..70840ac7 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.31.38" // PKG_AWS_VERSION + "default": "2.31.39" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", diff --git a/src/virtualbox/install.sh b/src/virtualbox/install.sh index 239272d8..949847fe 100755 --- a/src/virtualbox/install.sh +++ b/src/virtualbox/install.sh @@ -56,7 +56,7 @@ function main { sudo apt-get install -y -qq -o=Dpkg::Use-Pty=0 gnupg sudo mkdir -p /usr/share/keyrings - sudo gpg --dearmor --yes < oracle_vbox.asc | sudo tee /usr/share/keyrings/oracle-virtualbox-2016.gpg > /dev/null + sudo gpg --dearmor --yes /dev/null echo "deb [arch=amd64 signed-by=/usr/share/keyrings/oracle-virtualbox-2016.gpg] http://download.virtualbox.org/virtualbox/debian ${VERSION_CODENAME:-jessie} contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list 2>/dev/null sudo apt-get update -qq >/dev/null eval "sudo apt-get install -y -qq -o=Dpkg::Use-Pty=0 $pkgs" From 4cd07d33b8332201423be71e4b82ee324bd1ec60 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Thu, 20 Nov 2025 01:38:03 +0000 Subject: [PATCH 02/26] Upgrade pinned versions file --- ci/pinned_versions.env | 6 +++--- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 20f12800..70529f49 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.31.39 +export PKG_AWS_VERSION=2.32.1 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -16,11 +16,11 @@ export PKG_KREW_VERSION=0.4.5 export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.1 export PKG_PMDK_VERSION=2.1.1 -export PKG_QEMU_VERSION=10.1.2 +export PKG_QEMU_VERSION=10.2.0-rc1 export PKG_REGCLIENT_VERSION=0.10.0 export PKG_RUNC_VERSION=1.3.3 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 -export PKG_TERRAFORM_VERSION=1.13.5 +export PKG_TERRAFORM_VERSION=1.14.0 export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.42.0 export PKG_VAGRANT_VERSION=2.4.9 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 70840ac7..2ff71ec6 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.31.39" // PKG_AWS_VERSION + "default": "2.32.1" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 7f771413e96a2b233370a48a33818fe3e1c460a1 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Fri, 21 Nov 2025 01:38:42 +0000 Subject: [PATCH 03/26] Upgrade pinned versions file --- .github/workflows/compress-images.yml | 2 +- .github/workflows/distros.yml | 2 +- .github/workflows/lint.yml | 10 +++++----- .github/workflows/on-demand.yml | 12 ++++++------ .github/workflows/rebase.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/spell.yml | 4 ++-- .github/workflows/update.yml | 4 ++-- ci/pinned_versions.env | 6 +++--- src/aws/devcontainer-feature.json | 2 +- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/compress-images.yml b/.github/workflows/compress-images.yml index ec414532..dd03afeb 100644 --- a/.github/workflows/compress-images.yml +++ b/.github/workflows/compress-images.yml @@ -29,7 +29,7 @@ jobs: if: github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: calibreapp/image-actions@f32575787d333b0579f0b7d506ff03be63a669d1 # 1.4.1 with: githubToken: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/distros.yml b/.github/workflows/distros.yml index b626e1a8..98f0688e 100644 --- a/.github/workflows/distros.yml +++ b/.github/workflows/distros.yml @@ -22,7 +22,7 @@ jobs: pull-requests: write # for technote-space/create-pr-action to create a PR runs-on: vm-self-hosted steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0 with: path: ~/.vagrant.d/boxes diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 32364bd4..af01cbad 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,9 +16,9 @@ jobs: name: Count Lines of Code runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Setup Go - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # 6.0.0 + uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # 6.1.0 with: go-version: ">=1.20.0" - name: Install dependencies @@ -29,14 +29,14 @@ jobs: name: Check URL broken links into documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Check broken links uses: gaurav-nelson/github-action-markdown-link-check@4a1af151f4d7cf4d8f8ac5780597672a3671b88b # 1.0.17 check-super-linter: name: Run GitHub super-linter tool for verify quality of code runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Check super-linter uses: super-linter/super-linter@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2 # 8.2.1 env: @@ -51,7 +51,7 @@ jobs: name: Run additional linter tools from python tox runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Install tox run: pip install tox - name: Run tox validation diff --git a/.github/workflows/on-demand.yml b/.github/workflows/on-demand.yml index 89d4c108..ab8d51af 100644 --- a/.github/workflows/on-demand.yml +++ b/.github/workflows/on-demand.yml @@ -21,7 +21,7 @@ jobs: name: Check scripts format runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Run the sh-checker uses: luizm/action-sh-checker@17bd25a6ee188d2b91f677060038f4ba37ba14b2 # 0.9.0 env: @@ -33,7 +33,7 @@ jobs: name: Run BDD shell specs runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Install ShellSpec run: curl -fsSL https://github.com/shellspec/shellspec/releases/latest/download/shellspec-dist.tar.gz | tar -xz -C .. - name: Run Shellspec @@ -46,7 +46,7 @@ jobs: outputs: scripts: ${{ steps.filter.outputs.changes }} steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # 3.0.2 if: ${{ !env.ACT }} id: filter @@ -64,7 +64,7 @@ jobs: enable-vagrant-check: ${{ steps.set-matrices.outputs.enable-vagrant-check }} enable-devcontainers-check: ${{ steps.set-matrices.outputs.enable-devcontainers-check }} steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - id: set-matrices env: DEBUG: true @@ -80,7 +80,7 @@ jobs: matrix: include: ${{ fromJson(needs.generate-matrix.outputs.matrix-alias) }} steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: ./.github/actions/check-vagrant with: vagrant_name: ${{ matrix.name }} @@ -96,7 +96,7 @@ jobs: matrix: include: ${{ fromJson(needs.generate-matrix.outputs.matrix-image) }} steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Install latest devcontainer CLI run: npm install -g @devcontainers/cli - name: Generating tests for '${{ matrix.script }}' diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 7addea17..a5b9b93e 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c4ab338..f8589c97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Publish Features uses: devcontainers/action@1082abd5d2bf3a11abccba70eef98df068277772 # 1.4.3 with: diff --git a/.github/workflows/spell.yml b/.github/workflows/spell.yml index e28da855..115bed7d 100644 --- a/.github/workflows/spell.yml +++ b/.github/workflows/spell.yml @@ -29,7 +29,7 @@ jobs: name: Check misspelling words with reviewdog tools runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: reviewdog/action-misspell@e7ea17f144822818706c7e579de7927d59384575 # 1.27.0 with: github_token: ${{ secrets.github_token }} @@ -37,6 +37,6 @@ jobs: name: Check misspelling words with pySpelling tool runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: igsekor/pyspelling-any@44278deea34ea69d8f0d5179ac409c140b0a2f5a # 1.0.5 name: Spellcheck diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index cbf36089..da6a36ae 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -21,7 +21,7 @@ jobs: name: Check new versions for scripts supported runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 with: # Fine-grained PAT with contents:write and workflows:write scopes token: ${{ secrets.WORKFLOW_TOKEN }} @@ -37,7 +37,7 @@ jobs: name: Update word list runs-on: ubuntu-latest steps: - - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - uses: technote-space/create-pr-action@91114507cf92349bec0a9a501c2edf1635427bc5 # 2.1.4 with: EXECUTE_COMMANDS: | diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 70529f49..33a7eae9 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.1 +export PKG_AWS_VERSION=2.32.2 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -14,7 +14,7 @@ export PKG_KIND_VERSION=0.30.0 export PKG_KN_VERSION=knative-v1.20.0 export PKG_KREW_VERSION=0.4.5 export PKG_KUSTOMIZE_VERSION=5.8.0 -export PKG_NINJA_VERSION=1.13.1 +export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 export PKG_QEMU_VERSION=10.2.0-rc1 export PKG_REGCLIENT_VERSION=0.10.0 @@ -22,7 +22,7 @@ export PKG_RUNC_VERSION=1.3.3 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 export PKG_TERRAFORM_VERSION=1.14.0 export PKG_TERRASCAN_VERSION=1.19.9 -export PKG_TKN_VERSION=0.42.0 +export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 export PKG_YOUKI_VERSION=0.5.7 export PKG_YQ_VERSION=4.48.2 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 2ff71ec6..87f0cce2 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.1" // PKG_AWS_VERSION + "default": "2.32.2" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 8174d5fd2636948690fb83cebc2ecb09212f3924 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Sat, 22 Nov 2025 01:26:50 +0000 Subject: [PATCH 04/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 33a7eae9..9e89d10f 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.2 +export PKG_AWS_VERSION=2.32.3 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 87f0cce2..4534b597 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.2" // PKG_AWS_VERSION + "default": "2.32.3" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 03610563a7534354f4b3168aab6c55deb0b976f9 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Sun, 23 Nov 2025 01:50:32 +0000 Subject: [PATCH 05/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 9e89d10f..2e62f56e 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -25,4 +25,4 @@ export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 export PKG_YOUKI_VERSION=0.5.7 -export PKG_YQ_VERSION=4.48.2 +export PKG_YQ_VERSION=4.49.1 From 1d1b442dd241c725ba3b67776b3c7ae309a02577 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Tue, 25 Nov 2025 01:40:00 +0000 Subject: [PATCH 06/26] Upgrade pinned versions file --- ci/pinned_versions.env | 4 ++-- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 2e62f56e..6d9f3eaa 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.3 +export PKG_AWS_VERSION=2.32.4 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -25,4 +25,4 @@ export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 export PKG_YOUKI_VERSION=0.5.7 -export PKG_YQ_VERSION=4.49.1 +export PKG_YQ_VERSION=4.49.2 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 4534b597..194c9f24 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.3" // PKG_AWS_VERSION + "default": "2.32.4" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 8f963c33eb1069cfaf54a585d79ee672e674c2e6 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Wed, 26 Nov 2025 01:39:41 +0000 Subject: [PATCH 07/26] Upgrade pinned versions file --- ci/pinned_versions.env | 4 ++-- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 6d9f3eaa..dfb7c9c6 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,8 +1,8 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.4 +export PKG_AWS_VERSION=2.32.5 export PKG_CNI_PLUGINS_VERSION=1.8.0 -export PKG_CRUN_VERSION=1.25 +export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 export PKG_DOCKER_SLIM_VERSION=1.40.11 export PKG_FINALIZE_NAMESPACE_VERSION=0.0.2 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 194c9f24..014aa06d 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.4" // PKG_AWS_VERSION + "default": "2.32.5" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 316146073cb2515ccf9edfa3b391da0da4669b37 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Thu, 27 Nov 2025 01:38:23 +0000 Subject: [PATCH 08/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index dfb7c9c6..f2d53bd6 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.5 +export PKG_AWS_VERSION=2.32.6 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 014aa06d..929134d7 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.5" // PKG_AWS_VERSION + "default": "2.32.6" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 0c630eb39619a9f54a0a246b7be83ab490d1455d Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Fri, 28 Nov 2025 01:38:08 +0000 Subject: [PATCH 09/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index f2d53bd6..7f860af0 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -18,7 +18,7 @@ export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 export PKG_QEMU_VERSION=10.2.0-rc1 export PKG_REGCLIENT_VERSION=0.10.0 -export PKG_RUNC_VERSION=1.3.3 +export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 export PKG_TERRAFORM_VERSION=1.14.0 export PKG_TERRASCAN_VERSION=1.19.9 From 6f3315abc90b8b31f291d23b231432f2695651ad Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Sat, 29 Nov 2025 01:37:19 +0000 Subject: [PATCH 10/26] Upgrade pinned versions file --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index af01cbad..4ba23221 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -38,7 +38,7 @@ jobs: steps: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 - name: Check super-linter - uses: super-linter/super-linter@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2 # 8.2.1 + uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # 8.3.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LINTER_RULES_PATH: / From 1af87fae0c2559c3918ba83706c1c41644b74fa5 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Tue, 2 Dec 2025 01:42:03 +0000 Subject: [PATCH 11/26] Upgrade pinned versions file --- ci/pinned_versions.env | 6 +++--- src/act/devcontainer-feature.json | 2 +- src/aws/devcontainer-feature.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 7f860af0..7b0bc5b8 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ -export PKG_ACT_VERSION=0.2.82 -export PKG_AWS_VERSION=2.32.6 +export PKG_ACT_VERSION=0.2.83 +export PKG_AWS_VERSION=2.32.7 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -17,7 +17,7 @@ export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 export PKG_QEMU_VERSION=10.2.0-rc1 -export PKG_REGCLIENT_VERSION=0.10.0 +export PKG_REGCLIENT_VERSION=0.11.0 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 export PKG_TERRAFORM_VERSION=1.14.0 diff --git a/src/act/devcontainer-feature.json b/src/act/devcontainer-feature.json index ee7bc113..4013b68b 100644 --- a/src/act/devcontainer-feature.json +++ b/src/act/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_act_version": { "type": "string", "description": "Specifies the act version to be installed", - "default": "0.2.82" // PKG_ACT_VERSION + "default": "0.2.83" // PKG_ACT_VERSION }, "pkg_debug": { "type": "boolean", diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 929134d7..e810c5f4 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.6" // PKG_AWS_VERSION + "default": "2.32.7" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From b1ccfd522e0166d076d97a332ff49650a5547391 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Wed, 3 Dec 2025 01:41:58 +0000 Subject: [PATCH 12/26] Upgrade pinned versions file --- .github/workflows/compress-images.yml | 2 +- .github/workflows/distros.yml | 2 +- .github/workflows/lint.yml | 8 ++++---- .github/workflows/on-demand.yml | 12 ++++++------ .github/workflows/rebase.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/spell.yml | 4 ++-- .github/workflows/update.yml | 4 ++-- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/compress-images.yml b/.github/workflows/compress-images.yml index dd03afeb..95a99e9f 100644 --- a/.github/workflows/compress-images.yml +++ b/.github/workflows/compress-images.yml @@ -29,7 +29,7 @@ jobs: if: github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: calibreapp/image-actions@f32575787d333b0579f0b7d506ff03be63a669d1 # 1.4.1 with: githubToken: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/distros.yml b/.github/workflows/distros.yml index 98f0688e..8e83b78e 100644 --- a/.github/workflows/distros.yml +++ b/.github/workflows/distros.yml @@ -22,7 +22,7 @@ jobs: pull-requests: write # for technote-space/create-pr-action to create a PR runs-on: vm-self-hosted steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0 with: path: ~/.vagrant.d/boxes diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4ba23221..e5865577 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: name: Count Lines of Code runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Setup Go uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # 6.1.0 with: @@ -29,14 +29,14 @@ jobs: name: Check URL broken links into documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Check broken links uses: gaurav-nelson/github-action-markdown-link-check@4a1af151f4d7cf4d8f8ac5780597672a3671b88b # 1.0.17 check-super-linter: name: Run GitHub super-linter tool for verify quality of code runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Check super-linter uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # 8.3.0 env: @@ -51,7 +51,7 @@ jobs: name: Run additional linter tools from python tox runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Install tox run: pip install tox - name: Run tox validation diff --git a/.github/workflows/on-demand.yml b/.github/workflows/on-demand.yml index ab8d51af..3d46b525 100644 --- a/.github/workflows/on-demand.yml +++ b/.github/workflows/on-demand.yml @@ -21,7 +21,7 @@ jobs: name: Check scripts format runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Run the sh-checker uses: luizm/action-sh-checker@17bd25a6ee188d2b91f677060038f4ba37ba14b2 # 0.9.0 env: @@ -33,7 +33,7 @@ jobs: name: Run BDD shell specs runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Install ShellSpec run: curl -fsSL https://github.com/shellspec/shellspec/releases/latest/download/shellspec-dist.tar.gz | tar -xz -C .. - name: Run Shellspec @@ -46,7 +46,7 @@ jobs: outputs: scripts: ${{ steps.filter.outputs.changes }} steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # 3.0.2 if: ${{ !env.ACT }} id: filter @@ -64,7 +64,7 @@ jobs: enable-vagrant-check: ${{ steps.set-matrices.outputs.enable-vagrant-check }} enable-devcontainers-check: ${{ steps.set-matrices.outputs.enable-devcontainers-check }} steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - id: set-matrices env: DEBUG: true @@ -80,7 +80,7 @@ jobs: matrix: include: ${{ fromJson(needs.generate-matrix.outputs.matrix-alias) }} steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: ./.github/actions/check-vagrant with: vagrant_name: ${{ matrix.name }} @@ -96,7 +96,7 @@ jobs: matrix: include: ${{ fromJson(needs.generate-matrix.outputs.matrix-image) }} steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Install latest devcontainer CLI run: npm install -g @devcontainers/cli - name: Generating tests for '${{ matrix.script }}' diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index a5b9b93e..d8fdcbaf 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 with: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8589c97..64f3ecf8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Publish Features uses: devcontainers/action@1082abd5d2bf3a11abccba70eef98df068277772 # 1.4.3 with: diff --git a/.github/workflows/spell.yml b/.github/workflows/spell.yml index 115bed7d..97e7d200 100644 --- a/.github/workflows/spell.yml +++ b/.github/workflows/spell.yml @@ -29,7 +29,7 @@ jobs: name: Check misspelling words with reviewdog tools runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: reviewdog/action-misspell@e7ea17f144822818706c7e579de7927d59384575 # 1.27.0 with: github_token: ${{ secrets.github_token }} @@ -37,6 +37,6 @@ jobs: name: Check misspelling words with pySpelling tool runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: igsekor/pyspelling-any@44278deea34ea69d8f0d5179ac409c140b0a2f5a # 1.0.5 name: Spellcheck diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index da6a36ae..12fa039a 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -21,7 +21,7 @@ jobs: name: Check new versions for scripts supported runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 with: # Fine-grained PAT with contents:write and workflows:write scopes token: ${{ secrets.WORKFLOW_TOKEN }} @@ -37,7 +37,7 @@ jobs: name: Update word list runs-on: ubuntu-latest steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - uses: technote-space/create-pr-action@91114507cf92349bec0a9a501c2edf1635427bc5 # 2.1.4 with: EXECUTE_COMMANDS: | diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 7b0bc5b8..9a765c0b 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.7 +export PKG_AWS_VERSION=2.32.8 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index e810c5f4..b0b6166f 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.7" // PKG_AWS_VERSION + "default": "2.32.8" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 78511a06d89c32cdc328ab44c0d5ccffc2f0db40 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Thu, 4 Dec 2025 01:42:39 +0000 Subject: [PATCH 13/26] Upgrade pinned versions file --- ci/pinned_versions.env | 6 +++--- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 9a765c0b..d81ee038 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.8 +export PKG_AWS_VERSION=2.32.9 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -16,11 +16,11 @@ export PKG_KREW_VERSION=0.4.5 export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 -export PKG_QEMU_VERSION=10.2.0-rc1 +export PKG_QEMU_VERSION=10.2.0-rc2 export PKG_REGCLIENT_VERSION=0.11.0 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 -export PKG_TERRAFORM_VERSION=1.14.0 +export PKG_TERRAFORM_VERSION=1.14.1 export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index b0b6166f..e966b18a 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.8" // PKG_AWS_VERSION + "default": "2.32.9" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From e6145bd8a7c3cf1f6c7d84de411e7157eb9cc188 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Fri, 5 Dec 2025 01:43:00 +0000 Subject: [PATCH 14/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index d81ee038..d7aeb6a8 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.9 +export PKG_AWS_VERSION=2.32.10 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index e966b18a..4d42a9c7 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.9" // PKG_AWS_VERSION + "default": "2.32.10" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 2f48b078c03a4b85032270fab1f8697c06b47dff Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Sat, 6 Dec 2025 01:37:07 +0000 Subject: [PATCH 15/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index d7aeb6a8..b6ec8314 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.10 +export PKG_AWS_VERSION=2.32.11 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 4d42a9c7..727511d7 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.10" // PKG_AWS_VERSION + "default": "2.32.11" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From b2fa2d8fa353026b4912b18090655544418ba261 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Mon, 8 Dec 2025 01:43:13 +0000 Subject: [PATCH 16/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index b6ec8314..6e2ba790 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -17,7 +17,7 @@ export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 export PKG_QEMU_VERSION=10.2.0-rc2 -export PKG_REGCLIENT_VERSION=0.11.0 +export PKG_REGCLIENT_VERSION=0.11.1 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 export PKG_TERRAFORM_VERSION=1.14.1 From 5212d08cf9cafc2951d9dae0102cb629545d0d0d Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Tue, 9 Dec 2025 01:42:33 +0000 Subject: [PATCH 17/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 6e2ba790..5ca7d85a 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.11 +export PKG_AWS_VERSION=2.32.12 export PKG_CNI_PLUGINS_VERSION=1.8.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 727511d7..55e44373 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.11" // PKG_AWS_VERSION + "default": "2.32.12" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From dae33145ce40461d07d1d1b6d550ee96d0c8c702 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Wed, 10 Dec 2025 01:44:39 +0000 Subject: [PATCH 18/26] Upgrade pinned versions file --- ci/pinned_versions.env | 8 ++++---- src/aws/devcontainer-feature.json | 2 +- src/cni-plugins/devcontainer-feature.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 5ca7d85a..b694a579 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,12 +1,12 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.12 -export PKG_CNI_PLUGINS_VERSION=1.8.0 +export PKG_AWS_VERSION=2.32.13 +export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 export PKG_DOCKER_SLIM_VERSION=1.40.11 export PKG_FINALIZE_NAMESPACE_VERSION=0.0.2 -export PKG_FLANNEL_VERSION=1.8.0-flannel2 +export PKG_FLANNEL_VERSION=1.9.0-flannel1 export PKG_FLY_VERSION=7.14.3 export PKG_GOMPLATE_VERSION=4.3.3 export PKG_HADOLINT_VERSION=2.14.0 @@ -16,7 +16,7 @@ export PKG_KREW_VERSION=0.4.5 export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 -export PKG_QEMU_VERSION=10.2.0-rc2 +export PKG_QEMU_VERSION=10.2.0-rc3 export PKG_REGCLIENT_VERSION=0.11.1 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 55e44373..f971d36c 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.12" // PKG_AWS_VERSION + "default": "2.32.13" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", diff --git a/src/cni-plugins/devcontainer-feature.json b/src/cni-plugins/devcontainer-feature.json index 461c5098..55cfad3f 100644 --- a/src/cni-plugins/devcontainer-feature.json +++ b/src/cni-plugins/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_cni_plugins_version": { "type": "string", "description": "Specifies the CNI plugins version to be installed", - "default": "1.8.0" // PKG_CNI_PLUGINS_VERSION + "default": "1.9.0" // PKG_CNI_PLUGINS_VERSION }, "pkg_cni_plugins_folder": { "type": "string", @@ -17,7 +17,7 @@ "pkg_flannel_version": { "type": "string", "description": "Specifies the Flannel CNI version to be installed", - "default": "1.8.0-flannel2" // PKG_FLANNEL_VERSION + "default": "1.9.0-flannel1" // PKG_FLANNEL_VERSION }, "pkg_cni_plugins_install_flannel": { "type": "boolean", From 77b3a827272f714c3de41fccba59caeedc046809 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Thu, 11 Dec 2025 01:45:14 +0000 Subject: [PATCH 19/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index b694a579..8b43b7b4 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.13 +export PKG_AWS_VERSION=2.32.14 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index f971d36c..7dfba380 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.13" // PKG_AWS_VERSION + "default": "2.32.14" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 4953b8e842c8baa2820932b1a06f548fb49301f3 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Fri, 12 Dec 2025 01:45:01 +0000 Subject: [PATCH 20/26] Upgrade pinned versions file --- .github/actions/vagrant-setup/action.yml | 2 +- .github/workflows/distros.yml | 2 +- ci/pinned_versions.env | 4 ++-- src/aws/devcontainer-feature.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/vagrant-setup/action.yml b/.github/actions/vagrant-setup/action.yml index 3b4eba04..175a7860 100644 --- a/.github/actions/vagrant-setup/action.yml +++ b/.github/actions/vagrant-setup/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Cache Vagrant boxes - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # 5.0.0 with: path: ~/.vagrant.d/boxes key: ${{ runner.os }}-vagrant-${{ inputs.vagrant_name }}-${{ hashFiles('distros_supported.yml') }} diff --git a/.github/workflows/distros.yml b/.github/workflows/distros.yml index 8e83b78e..a93c2737 100644 --- a/.github/workflows/distros.yml +++ b/.github/workflows/distros.yml @@ -23,7 +23,7 @@ jobs: runs-on: vm-self-hosted steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # 4.3.0 + - uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # 5.0.0 with: path: ~/.vagrant.d/boxes key: ${{ runner.os }}-vagrant-${{ hashFiles('distros_supported.yml') }} diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 8b43b7b4..e07322eb 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.14 +export PKG_AWS_VERSION=2.32.15 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -20,7 +20,7 @@ export PKG_QEMU_VERSION=10.2.0-rc3 export PKG_REGCLIENT_VERSION=0.11.1 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.20.0 -export PKG_TERRAFORM_VERSION=1.14.1 +export PKG_TERRAFORM_VERSION=1.14.2 export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 7dfba380..d836dc92 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.14" // PKG_AWS_VERSION + "default": "2.32.15" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 7dcbe14796d393d30df1d62e37cbf37da7f7ded6 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Sat, 13 Dec 2025 01:39:29 +0000 Subject: [PATCH 21/26] Upgrade pinned versions file --- .github/actions/vagrant-setup/action.yml | 2 +- .github/workflows/distros.yml | 2 +- ci/pinned_versions.env | 4 ++-- src/aws/devcontainer-feature.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/vagrant-setup/action.yml b/.github/actions/vagrant-setup/action.yml index 175a7860..a8d1d9a1 100644 --- a/.github/actions/vagrant-setup/action.yml +++ b/.github/actions/vagrant-setup/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Cache Vagrant boxes - uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # 5.0.0 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # 5.0.1 with: path: ~/.vagrant.d/boxes key: ${{ runner.os }}-vagrant-${{ inputs.vagrant_name }}-${{ hashFiles('distros_supported.yml') }} diff --git a/.github/workflows/distros.yml b/.github/workflows/distros.yml index a93c2737..c83fe2ee 100644 --- a/.github/workflows/distros.yml +++ b/.github/workflows/distros.yml @@ -23,7 +23,7 @@ jobs: runs-on: vm-self-hosted steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - - uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # 5.0.0 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # 5.0.1 with: path: ~/.vagrant.d/boxes key: ${{ runner.os }}-vagrant-${{ hashFiles('distros_supported.yml') }} diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index e07322eb..6fa9cd6b 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.15 +export PKG_AWS_VERSION=2.32.16 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -19,7 +19,7 @@ export PKG_PMDK_VERSION=2.1.1 export PKG_QEMU_VERSION=10.2.0-rc3 export PKG_REGCLIENT_VERSION=0.11.1 export PKG_RUNC_VERSION=1.4.0 -export PKG_TERRAFORM_DOCS_VERSION=0.20.0 +export PKG_TERRAFORM_DOCS_VERSION=0.21.0 export PKG_TERRAFORM_VERSION=1.14.2 export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index d836dc92..ff53507d 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.15" // PKG_AWS_VERSION + "default": "2.32.16" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 36fd9e6af490d0f4491df13d97d5cfe9b485f0f9 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Mon, 15 Dec 2025 01:49:02 +0000 Subject: [PATCH 22/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 6fa9cd6b..f687f575 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -25,4 +25,4 @@ export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 export PKG_YOUKI_VERSION=0.5.7 -export PKG_YQ_VERSION=4.49.2 +export PKG_YQ_VERSION=4.50.1 From 158608feb0da1ff2c1b58144ab92b515e5cc8749 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Tue, 16 Dec 2025 01:45:36 +0000 Subject: [PATCH 23/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index f687f575..3097ea0c 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.16 +export PKG_AWS_VERSION=2.32.17 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index ff53507d..008562d5 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.16" // PKG_AWS_VERSION + "default": "2.32.17" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 6f54923375ca92610df54fb60f48b7523a75f22b Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Wed, 17 Dec 2025 01:41:28 +0000 Subject: [PATCH 24/26] Upgrade pinned versions file --- .github/workflows/lint.yml | 2 +- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e5865577..de88bd35 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -38,7 +38,7 @@ jobs: steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1 - name: Check super-linter - uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # 8.3.0 + uses: super-linter/super-linter@47984f49b4e87383eed97890fe2dca6063bbd9c3 # 8.3.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LINTER_RULES_PATH: / diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 3097ea0c..600b6be8 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.17 +export PKG_AWS_VERSION=2.32.18 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 008562d5..5fda1464 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.17" // PKG_AWS_VERSION + "default": "2.32.18" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", From 2d2afec9fe80f6f1839decaeecb516f9e661c043 Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Thu, 18 Dec 2025 01:41:30 +0000 Subject: [PATCH 25/26] Upgrade pinned versions file --- ci/pinned_versions.env | 8 ++++---- src/aws/devcontainer-feature.json | 2 +- src/kind/devcontainer-feature.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 600b6be8..7c9267a2 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.18 +export PKG_AWS_VERSION=2.32.19 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 @@ -10,17 +10,17 @@ export PKG_FLANNEL_VERSION=1.9.0-flannel1 export PKG_FLY_VERSION=7.14.3 export PKG_GOMPLATE_VERSION=4.3.3 export PKG_HADOLINT_VERSION=2.14.0 -export PKG_KIND_VERSION=0.30.0 +export PKG_KIND_VERSION=0.31.0 export PKG_KN_VERSION=knative-v1.20.0 export PKG_KREW_VERSION=0.4.5 export PKG_KUSTOMIZE_VERSION=5.8.0 export PKG_NINJA_VERSION=1.13.2 export PKG_PMDK_VERSION=2.1.1 -export PKG_QEMU_VERSION=10.2.0-rc3 +export PKG_QEMU_VERSION=10.2.0-rc4 export PKG_REGCLIENT_VERSION=0.11.1 export PKG_RUNC_VERSION=1.4.0 export PKG_TERRAFORM_DOCS_VERSION=0.21.0 -export PKG_TERRAFORM_VERSION=1.14.2 +export PKG_TERRAFORM_VERSION=1.14.3 export PKG_TERRASCAN_VERSION=1.19.9 export PKG_TKN_VERSION=0.43.0 export PKG_VAGRANT_VERSION=2.4.9 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 5fda1464..5ad00260 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.18" // PKG_AWS_VERSION + "default": "2.32.19" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean", diff --git a/src/kind/devcontainer-feature.json b/src/kind/devcontainer-feature.json index 6eb3ec2a..40d5b777 100644 --- a/src/kind/devcontainer-feature.json +++ b/src/kind/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_kind_version": { "type": "string", "description": "Specifies the KinD version to be installed", - "default": "0.30.0" // PKG_KIND_VERSION + "default": "0.31.0" // PKG_KIND_VERSION }, "pkg_debug": { "type": "boolean", From 7c547335874bc5c7f430ad1c8e3448d5bb5c022e Mon Sep 17 00:00:00 2001 From: electrocucaracha bot Date: Fri, 19 Dec 2025 01:45:14 +0000 Subject: [PATCH 26/26] Upgrade pinned versions file --- ci/pinned_versions.env | 2 +- src/aws/devcontainer-feature.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pinned_versions.env b/ci/pinned_versions.env index 7c9267a2..93d470ae 100644 --- a/ci/pinned_versions.env +++ b/ci/pinned_versions.env @@ -1,6 +1,6 @@ export PKG_ACT_VERSION=0.2.83 -export PKG_AWS_VERSION=2.32.19 +export PKG_AWS_VERSION=2.32.20 export PKG_CNI_PLUGINS_VERSION=1.9.0 export PKG_CRUN_VERSION=1.25.1 export PKG_DOCKER_DIVE_VERSION=0.13.1 diff --git a/src/aws/devcontainer-feature.json b/src/aws/devcontainer-feature.json index 5ad00260..ac36d162 100644 --- a/src/aws/devcontainer-feature.json +++ b/src/aws/devcontainer-feature.json @@ -7,7 +7,7 @@ "pkg_aws_version": { "type": "string", "description": "Specifies the AWS CLI version to be installed", - "default": "2.32.19" // PKG_AWS_VERSION + "default": "2.32.20" // PKG_AWS_VERSION }, "pkg_debug": { "type": "boolean",