all repos — gomponents @ 73373c8a290e8f16e0ac59b5aa082ca9a21cec98

HTML components in pure Go

Upgrade CI workflow (#223)

Mainly the linter action is easier to use.
Markus Wüstenberg markus@maragu.dk
Wed, 09 Oct 2024 11:19:01 +0200
commit

73373c8a290e8f16e0ac59b5aa082ca9a21cec98

parent

0b203e941d175e9b2cc4b95939b54a7f38580b2e

2 files changed, 11 insertions(+), 5 deletions(-)

jump to
M .github/workflows/ci.yml.github/workflows/ci.yml
@@ -29,10 +29,10 @@ - "1.23" 
     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 @@ name: Lint     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
M README.mdREADME.md
@@ -1,6 +1,6 @@ # Tired of complex template languages?
 
-<img src="logo.png" alt="Logo" width="300" align="right"/>
+<img src="logo.png" alt="Logo" width="300" align="right">
 
 [![GoDoc](https://pkg.go.dev/badge/maragu.dev/gomponents)](https://pkg.go.dev/maragu.dev/gomponents)
 [![Go](https://github.com/maragudk/gomponents/actions/workflows/ci.yml/badge.svg)](https://github.com/maragudk/gomponents/actions/workflows/ci.yml)