diff options
author | Markus Wüstenberg | 2024-10-09 11:19:01 +0200 |
---|---|---|
committer | GitHub | 2024-10-09 11:19:01 +0200 |
commit | 73373c8a290e8f16e0ac59b5aa082ca9a21cec98 (patch) | |
tree | 4b09c409ade8fcca55908392b8e44e96bab2029b /.github/workflows | |
parent | 0b203e941d175e9b2cc4b95939b54a7f38580b2e (diff) | |
download | gomponents-73373c8a290e8f16e0ac59b5aa082ca9a21cec98.tar.lz gomponents-73373c8a290e8f16e0ac59b5aa082ca9a21cec98.tar.zst gomponents-73373c8a290e8f16e0ac59b5aa082ca9a21cec98.zip |
Upgrade CI workflow (#223)
Mainly the linter action is easier to use.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b179ab4..35861c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} check-latest: true @@ -51,9 +51,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + check-latest: true - name: Lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v6 with: version: latest |