aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/cbfmt.yml
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-03-12 09:26:02 +0100
committerGitHub <noreply@github.com>2023-03-12 09:26:02 +0100
commit698cd0c4f10480991e665f31977650858d625af1 (patch)
tree0b4b93cd3ff4b31d1be2e1b47a7d37927150df2f /.github/workflows/cbfmt.yml
parentfeat: add github registry source capabilities (#1091) (diff)
downloadmason-698cd0c4f10480991e665f31977650858d625af1.tar
mason-698cd0c4f10480991e665f31977650858d625af1.tar.gz
mason-698cd0c4f10480991e665f31977650858d625af1.tar.bz2
mason-698cd0c4f10480991e665f31977650858d625af1.tar.lz
mason-698cd0c4f10480991e665f31977650858d625af1.tar.xz
mason-698cd0c4f10480991e665f31977650858d625af1.tar.zst
mason-698cd0c4f10480991e665f31977650858d625af1.zip
style: enforce import order (#1092)
* chore(workflows): update dependencies * style: enforce import order
Diffstat (limited to '.github/workflows/cbfmt.yml')
-rw-r--r--.github/workflows/cbfmt.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cbfmt.yml b/.github/workflows/cbfmt.yml
index d9a5e2d9..57d77525 100644
--- a/.github/workflows/cbfmt.yml
+++ b/.github/workflows/cbfmt.yml
@@ -14,13 +14,13 @@ jobs:
- name: Download cbfmt
run: |
mkdir /tmp/cbfmt && cd $_
- curl -fsSL -o cbfmt.tar.gz "https://github.com/lukas-reineke/cbfmt/releases/download/v0.1.4/cbfmt_linux-x86_64_v0.1.4.tar.gz"
+ curl -fsSL -o cbfmt.tar.gz "https://github.com/lukas-reineke/cbfmt/releases/download/v0.2.0/cbfmt_linux-x86_64_v0.2.0.tar.gz"
tar --strip-components 1 -xvf cbfmt.tar.gz
mv cbfmt /usr/local/bin/
- name: Download Stylua
run: |
mkdir /tmp/stylua && cd $_
- curl -fsSL -o stylua.zip "https://github.com/JohnnyMorganz/StyLua/releases/download/v0.14.2/stylua-linux.zip"
+ curl -fsSL -o stylua.zip "https://github.com/JohnnyMorganz/StyLua/releases/download/v0.17.0/stylua-linux.zip"
unzip -d /usr/local/bin stylua.zip
- name: Download Shellharden
run: |