diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2023-01-02 17:49:19 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2023-01-02 17:49:19 +0100 |
| commit | 3bd8ec1bb9d903231060d8e696b3aa9c51f68e0f (patch) | |
| tree | 11d632f66399c5ff2f635f98cd4349b1d7142355 /.github/workflows | |
| parent | 7669770034f773bd96a71bb5e0cde93a8f0495e9 (diff) | |
| download | soria-3bd8ec1bb9d903231060d8e696b3aa9c51f68e0f.tar.gz soria-3bd8ec1bb9d903231060d8e696b3aa9c51f68e0f.zip | |
ci: fix build
Go now requires to use `install` instead of `get` for binaries.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d625af9..a496150 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,7 @@ jobs: - uses: actions/checkout@v2 - name: Install git-validation - run: | - go get -u github.com/vbatts/git-validation + run: go install github.com/vbatts/git-validation@latest - name: make ci run: make ci |
