Merge pull request #2758 from AiyionPrime/editorconfig-checker-270

workflows/docker: bump editorconfig-checker from 2.6.0 to 2.7.0
This commit is contained in:
Jan-Niklas Burfeind 2023-01-15 20:01:44 +01:00 committed by GitHub
commit acfd3f1744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ jobs:
run: sudo apt install curl tar
- name: Install editorconfig-checker
env:
VERSION: 2.6.0
VERSION: 2.7.0
OS: linux
ARCH: amd64
run: |

View File

@ -25,7 +25,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /tmp/ec &&\
wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.6.0/ec-linux-amd64.tar.gz &&\
wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.7.0/ec-linux-amd64.tar.gz &&\
tar -xvzf /tmp/ec/ec-linux-amd64.tar.gz &&\
mv bin/ec-linux-amd64 /usr/local/bin/editorconfig-checker &&\
rm -rf /tmp/ec