Skip to content

Commit db0eb35

Browse files
Use suitable base images in tests
1 parent 4592b98 commit db0eb35

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/shellcheck/scenarios.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"shellcheck-version": {
3-
"image": "debian:latest",
3+
"image": "mcr.microsoft.com/devcontainers/base:debian",
44
"features": {
55
"shellcheck": {
6-
"version": "0.5.0"
6+
"version": "0.7.0"
77
}
88
}
99
},
1010

1111
"shellcheck-install-path": {
12-
"image": "debian:latest",
12+
"image": "mcr.microsoft.com/devcontainers/base:debian",
1313
"features": {
1414
"shellcheck": {
1515
"installPath": "/usr/bin"

test/shellcheck/shellcheck-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ source dev-container-features-test-lib
1111
# Feature-specific tests
1212
# The 'check' command comes from the dev-container-features-test-lib. Syntax is...
1313
# check <LABEL> <cmd> [args...]
14-
check "version" bash -c "shellcheck --version | grep 0.5.0"
14+
check "version" bash -c "shellcheck --version | grep 0.7.0"
1515

1616
# Report result
1717
# If any of the checks above exited with a non-zero exit code, the test will fail.

0 commit comments

Comments
 (0)