Update black binary to 21.10b0 (#2141)

* Bumping black to v21.10b

* fix lua

Co-authored-by: Admiral Awkbar <admiralawkbar@github.com>
This commit is contained in:
Paolo D'Onorio De Meo 2021-11-15 18:48:14 +01:00 committed by GitHub
parent eca2494a0d
commit 0d88d496bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -136,7 +136,7 @@ RUN pip3 install --no-cache-dir pipenv \
######################## ########################
# Install Python Black # # Install Python Black #
######################## ########################
&& wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.9b0/black_linux \ && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.10b0/black_linux \
&& chmod +x /usr/local/bin/black && chmod +x /usr/local/bin/black
############################## ##############################
# Installs Perl dependencies # # Installs Perl dependencies #
@ -328,6 +328,8 @@ RUN apk add --no-cache rakudo zef \
&& cd .. \ && cd .. \
&& rm -r luarocks-3.3.1-super-linter/ \ && rm -r luarocks-3.3.1-super-linter/ \
&& luarocks install luacheck \ && luarocks install luacheck \
&& luarocks install argparse \
&& luarocks install luafilesystem \
&& mv /etc/R/* /usr/lib/R/etc/ \ && mv /etc/R/* /usr/lib/R/etc/ \
&& find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \ && find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \
&& find /node_modules/ -type f -name '*.md' -exec rm {} + \ && find /node_modules/ -type f -name '*.md' -exec rm {} + \

View file

@ -111,7 +111,7 @@ RUN curl --retry 5 --retry-delay 5 -sL https://cpanmin.us/ | perl - -nq --no-wge
######################## ########################
# Install Python Black # # Install Python Black #
######################## ########################
&& wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.9b0/black_linux \ && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.10b0/black_linux \
&& chmod +x /usr/local/bin/black \ && chmod +x /usr/local/bin/black \
####################### #######################
# Installs ActionLint # # Installs ActionLint #
@ -266,6 +266,8 @@ RUN apk add --no-cache rakudo zef \
&& cd .. \ && cd .. \
&& rm -r luarocks-3.3.1-super-linter/ \ && rm -r luarocks-3.3.1-super-linter/ \
&& luarocks install luacheck \ && luarocks install luacheck \
&& luarocks install argparse \
&& luarocks install luafilesystem \
&& mv /etc/R/* /usr/lib/R/etc/ \ && mv /etc/R/* /usr/lib/R/etc/ \
&& find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \ && find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \
&& find /node_modules/ -type f -name '*.md' -exec rm {} + \ && find /node_modules/ -type f -name '*.md' -exec rm {} + \