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
1 change: 0 additions & 1 deletion .github/.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ renderer
repos
RPC
RUNC
runtime
RUNTIMES
Scc
sed
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # 6.3.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # 6.4.0
with:
go-version: "^1.25"
go-version: "^1.26"
- name: Install dependencies
run: go install github.com/boyter/scc/v3@latest
- name: Run scc tool
Expand All @@ -46,7 +46,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Check super-linter
uses: super-linter/super-linter@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # 8.5.0
uses: super-linter/super-linter@9e863354e3ff62e0727d37183162c4a88873df41 # 8.6.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Automatic Rebase
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 # zizmor: ignore[archived-uses]
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22 changes: 11 additions & 11 deletions ci/pinned_versions.env
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

export PKG_ACT_VERSION=0.2.84
export PKG_AWS_VERSION=2.34.7
export PKG_CNI_PLUGINS_VERSION=1.9.0
export PKG_CRUN_VERSION=1.26
export PKG_ACT_VERSION=0.2.87
export PKG_AWS_VERSION=2.34.28
export PKG_CNI_PLUGINS_VERSION=1.9.1
export PKG_CRUN_VERSION=1.27
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.9.0-flannel1
export PKG_FLY_VERSION=8.1.0
export PKG_FLY_VERSION=8.1.1
export PKG_GOMPLATE_VERSION=5.0.0
export PKG_HADOLINT_VERSION=2.14.0
export PKG_KIND_VERSION=0.31.0
Expand All @@ -16,13 +16,13 @@ export PKG_KREW_VERSION=0.5.0
export PKG_KUSTOMIZE_VERSION=5.8.1
export PKG_NINJA_VERSION=1.13.2
export PKG_PMDK_VERSION=2.1.1
export PKG_QEMU_VERSION=10.2.1
export PKG_QEMU_VERSION=11.0.0-rc3
export PKG_REGCLIENT_VERSION=0.11.2
export PKG_RUNC_VERSION=1.4.0
export PKG_TERRAFORM_DOCS_VERSION=0.21.0
export PKG_TERRAFORM_VERSION=1.14.7
export PKG_RUNC_VERSION=1.4.2
export PKG_TERRAFORM_DOCS_VERSION=0.22.0
export PKG_TERRAFORM_VERSION=1.14.8
export PKG_TERRASCAN_VERSION=1.19.9
export PKG_TKN_VERSION=0.44.0
export PKG_TKN_VERSION=0.44.1
export PKG_VAGRANT_VERSION=2.4.9
export PKG_YOUKI_VERSION=0.6.0
export PKG_YQ_VERSION=4.52.4
export PKG_YQ_VERSION=4.52.5
56 changes: 28 additions & 28 deletions spec/install_spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,33 @@
##############################################################################

Describe 'install.sh'
Include ./install.sh
Include ./install.sh

Describe '_vercmp()'
Parameters
'1.1.1' '==' '1.1.1' success
'1.1.1' '==' '1.1.0' failure
'1.1.0' '<' '1.1.1' success
'1.1.1' '<' '1.1.0' failure
'1.1.1' '<' '1.1.1' failure
'1.1.1' '<=' '1.1.1' success
'1.1.0' '<=' '1.1.1' success
'1.1.1' '<=' '1.1.0' failure
'1.1.1' '>' '1.1.0' success
'1.1.0' '>' '1.1.1' failure
'1.1.1' '>' '1.1.1' failure
'1.1.1' '>=' '1.1.0' success
'1.1.1' '>=' '1.1.1' success
'1.1.0' '>=' '1.1.1' failure
End
It 'performs comparation'
When call _vercmp "$1" "$2" "$3"
The status should be "$4"
End
It 'raises error when specified an invalid operator'
When run _vercmp '1.0.0' '!=' '2.0.0'
The stdout should equal "unrecognised op: !="
The status should be failure
End
End
Describe '_vercmp()'
Parameters
'1.1.1' '==' '1.1.1' success
'1.1.1' '==' '1.1.0' failure
'1.1.0' '<' '1.1.1' success
'1.1.1' '<' '1.1.0' failure
'1.1.1' '<' '1.1.1' failure
'1.1.1' '<=' '1.1.1' success
'1.1.0' '<=' '1.1.1' success
'1.1.1' '<=' '1.1.0' failure
'1.1.1' '>' '1.1.0' success
'1.1.0' '>' '1.1.1' failure
'1.1.1' '>' '1.1.1' failure
'1.1.1' '>=' '1.1.0' success
'1.1.1' '>=' '1.1.1' success
'1.1.0' '>=' '1.1.1' failure
End
It 'performs comparation'
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo in test description: "comparation" should be "comparison".

Suggested change
It 'performs comparation'
It 'performs comparison'

Copilot uses AI. Check for mistakes.
When call _vercmp "$1" "$2" "$3"
The status should be "$4"
End
It 'raises error when specified an invalid operator'
When run _vercmp '1.0.0' '!=' '2.0.0'
The stdout should equal "unrecognised op: !="
The status should be failure
End
End
End
2 changes: 1 addition & 1 deletion src/act/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"pkg_act_version": {
"type": "string",
"description": "Specifies the act version to be installed",
"default": "0.2.84" // PKG_ACT_VERSION
"default": "0.2.87" // PKG_ACT_VERSION
},
"pkg_debug": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion src/aws/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"pkg_aws_version": {
"type": "string",
"description": "Specifies the AWS CLI version to be installed",
"default": "2.34.7" // PKG_AWS_VERSION
"default": "2.34.28" // PKG_AWS_VERSION
},
"pkg_debug": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion src/cni-plugins/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"pkg_cni_plugins_version": {
"type": "string",
"description": "Specifies the CNI plugins version to be installed",
"default": "1.9.0" // PKG_CNI_PLUGINS_VERSION
"default": "1.9.1" // PKG_CNI_PLUGINS_VERSION
},
"pkg_cni_plugins_folder": {
"type": "string",
Expand Down
Loading