aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-02-21 13:57:56 +0100
committerGravatar GitHub <noreply@github.com> 2025-02-21 13:57:56 +0100
commitf477a261d686e1d37853e4718c9e6e4393498959 (patch)
tree6d866faa88ebdebb1b4a427df68624a583baeaa8 /Makefile
parentd5b8572ec7c4f5c0f6d49296aeffc2d0b706908f (diff)
Update dev tools (#7347)
In particular those not covered by Dependabot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d8b33824a..1720b565e 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,7 @@ lint-fix: bin/phpcbf ## Fix the errors detected by the linter
bin/composer:
mkdir -p bin/
- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/1a26c0dcb361332cb504e4861ed0f758281575aa/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
+ wget 'https://raw.githubusercontent.com/composer/getcomposer.org/9e43d8a9b16fffa4dc9b090b9104dab7d815424a/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
# building any of these builds them all
vendor/bin/phpunit vendor/bin/phpcs vendor/bin/phpcbf vendor/bin/phpstan &: bin/composer
@@ -86,7 +86,7 @@ bin/phpunit bin/phpcs bin/phpcbf bin/phpstan : % : vendor/%
bin/typos:
mkdir -p bin/
cd bin ; \
- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
+ wget -q 'https://github.com/crate-ci/typos/releases/download/v1.29.9/typos-v1.29.9-x86_64-unknown-linux-musl.tar.gz' && \
tar -xvf *.tar.gz './typos' && \
chmod +x typos && \
rm *.tar.gz ; \