Skip to content

Commit

Permalink
Merge pull request #87 from deining/bump-github-workflow-actions
Browse files Browse the repository at this point in the history
Bump GitHub workflow actions to latest versions
  • Loading branch information
danog authored Apr 27, 2024
2 parents f9950df + 43077aa commit 9d616d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: go build -v ./...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: golangci-lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v5
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Contributors: @osteele, @thessem
([08cf333](https://github.com/osteele/liquid/commit/08cf333))
* Consolidate {expressions,values}/drops.go
([516182a](https://github.com/osteele/liquid/commit/516182a))
* Document values, includng new struct behavior
* Document values, including new struct behavior
([1bc9726](https://github.com/osteele/liquid/commit/1bc9726))
* Fix struct PropertyValue attempting to use an invalid pointer
([b2f5f1f](https://github.com/osteele/liquid/commit/b2f5f1f))
Expand Down

0 comments on commit 9d616d8

Please sign in to comment.