Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GitHub actions to their latest versions #80

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
go-version: [1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Install go
uses: WillAbides/setup-go-faster@v1.5.0
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: ${{ matrix.go-version }}

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Test
run: go test -count 1 -bench . -benchtime 1x ./...
Expand All @@ -32,21 +32,21 @@ jobs:
needs: test
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
go-version: [1.21.x, 1.22.x]
arch: [386, arm, arm64]
runs-on: ubuntu-latest

steps:
- name: Install go
uses: WillAbides/setup-go-faster@v1.5.0
uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: ${{ matrix.go-version }}

- name: Install QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run test via qemu/binfmt
# TODO: Run the dynamic linking tests as well. That is a little more
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The package is written with optimized pure Go and also contains even faster
assembly implementations for amd64 and arm64. If desired, the `purego` build tag
opts into using the Go code even on those architectures.

[xxHash]: http://cyan4973.github.io/xxHash/
[xxHash]: https://xxhash.com/

## Compatibility

Expand Down
2 changes: 1 addition & 1 deletion xxhash.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package xxhash implements the 64-bit variant of xxHash (XXH64) as described
// at http://cyan4973.github.io/xxHash/.
// at https://xxhash.com/.
package xxhash

import (
Expand Down