File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -82,12 +82,19 @@ jobs:
82
82
working-directory : docker
83
83
run : docker compose ps
84
84
85
- - name : Install Hurl
86
- run : |
87
- VER=6.1.1
88
- DEB=hurl_${VER}_amd64.deb
89
- curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VER/$DEB
90
- sudo dpkg --install $DEB
85
+ - name : Install mise to install Hurl
86
+ uses : jdx/mise-action@v2.1.11 # https://github.com/jdx/mise-action
87
+ with :
88
+ version : 2025.4.2 # [default: latest] mise version to install
89
+ install : true # [default: true] run `mise install`
90
+ cache : true # [default: true] cache mise using GitHub's cache
91
+ log_level : info # [default: info] log level
92
+ working_directory : tests # [default: .] directory to run mise in
93
+ env :
94
+ # Workaround: don't install some dependencies that we don't use (go, node, python)
95
+ # See: https://github.com/jdx/mise-action/issues/183
96
+ # https://mise.jdx.dev/configuration/settings.html#disable_tools
97
+ MISE_DISABLE_TOOLS : go,node,python
91
98
92
99
- name : Show Hurl version
93
100
run : hurl --version
You can’t perform that action at this time.
0 commit comments