Skip to content

Commit 0154959

Browse files
refactor: Update editorconfig version
1 parent 9b83339 commit 0154959

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN \
1818
bash /tmp/scripts/hadolint-debian.sh "2.10.0"; \
1919
bash /tmp/scripts/shfmt-debian.sh "3.5.1"; \
2020
bash /tmp/scripts/shellcheck-debian.sh "0.8.0"; \
21-
bash /tmp/scripts/editorconfig-debian.sh "2.5.0"; \
21+
bash /tmp/scripts/editorconfig-debian.sh "2.6.0"; \
2222
bash /tmp/scripts/trivy-debian.sh; \
2323
bash /tmp/scripts/setup-python-tools.sh "/usr/local/bin/python" "/usr/local/"; \
2424
apt-get autoremove; \

.devcontainer/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ RUN \
1616
bash /tmp/scripts/hadolint-alpine.sh "2.10.0"; \
1717
bash /tmp/scripts/shfmt-alpine.sh "3.5.1"; \
1818
bash /tmp/scripts/shellcheck-alpine.sh "0.8.0"; \
19-
bash /tmp/scripts/editorconfig-alpine.sh "2.5.0"; \
19+
bash /tmp/scripts/editorconfig-alpine.sh "2.6.0"; \
2020
bash /tmp/scripts/trivy-alpine.sh; \
2121
rm -rf /var/cache/apk/* /tmp/scripts

.devcontainer/Dockerfile.python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN \
1818
bash /tmp/scripts/hadolint-debian.sh "2.10.0"; \
1919
bash /tmp/scripts/shfmt-debian.sh "3.5.1"; \
2020
bash /tmp/scripts/shellcheck-debian.sh "0.8.0"; \
21-
bash /tmp/scripts/editorconfig-debian.sh "2.5.0"; \
21+
bash /tmp/scripts/editorconfig-debian.sh "2.6.0"; \
2222
bash /tmp/scripts/trivy-debian.sh; \
2323
bash /tmp/scripts/setup-python-tools.sh "/usr/local/bin/python" "/usr/local/"; \
2424
apt-get autoremove; \

.devcontainer/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN \
1818
bash /tmp/scripts/hadolint-debian.sh "2.10.0"; \
1919
bash /tmp/scripts/shfmt-debian.sh "3.5.1"; \
2020
bash /tmp/scripts/shellcheck-debian.sh "0.8.0"; \
21-
bash /tmp/scripts/editorconfig-debian.sh "2.5.0"; \
21+
bash /tmp/scripts/editorconfig-debian.sh "2.6.0"; \
2222
bash /tmp/scripts/trivy-debian.sh; \
2323
bash /tmp/scripts/python-debian.sh "system"; \
2424
bash /tmp/scripts/setup-python-tools.sh "/usr/bin/python3"; \

.devcontainer/library-scripts/editorconfig-alpine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
EDITORCONFIG_VERSION=${1:-"2.5.0"}
5+
EDITORCONFIG_VERSION=${1:-"2.6.0"}
66
SCRIPT=("${BASH_SOURCE[@]}")
77
SCRIPT_PATH="${SCRIPT##*/}"
88
SCRIPT_NAME="${SCRIPT_PATH%.*}"

.devcontainer/library-scripts/editorconfig-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
EDITORCONFIG_VERSION=${1:-"2.5.0"}
5+
EDITORCONFIG_VERSION=${1:-"2.6.0"}
66
SCRIPT=("${BASH_SOURCE[@]}")
77
SCRIPT_PATH="${SCRIPT##*/}"
88
SCRIPT_NAME="${SCRIPT_PATH%.*}"

.devcontainer/library-scripts/editorconfig.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
EDITORCONFIG_VERSION=${1:-"2.5.0"}
5+
EDITORCONFIG_VERSION=${1:-"2.6.0"}
66
CONTAINER_OS=${2:-"alpine"}
77
SCRIPT=("${BASH_SOURCE[@]}")
88
SCRIPT_PATH="${SCRIPT##*/}"

0 commit comments

Comments
 (0)