Skip to content

Commit 855572d

Browse files
committed
Update supported Go versions from 1.19/1.20 to 1.22/1.23
Also update various Github actions
1 parent f2a75ff commit 855572d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
go: [ '1.19', '1.20' ]
15+
go: [ '1.22', '1.23' ]
1616

1717
name: Go ${{ matrix.go }}
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v2
23+
uses: actions/setup-go@v5
2424
with:
2525
go-version: ${{ matrix.go }}
2626

2727
- name: golangci-lint
28-
uses: golangci/golangci-lint-action@v2
28+
uses: golangci/golangci-lint-action@v6
2929
with:
30-
version: v1.51.2
30+
version: v1.62.2
3131

3232
- name: Test
3333
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Passhash ![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/dhui/passhash/go.yml?branch=master) [![Code Coverage](https://img.shields.io/codecov/c/github/dhui/passhash.svg)](https://codecov.io/gh/dhui/passhash) [![GoDoc](https://godoc.org/github.com/dhui/passhash?status.svg)](https://godoc.org/github.com/dhui/passhash) [![Go Report Card](https://goreportcard.com/badge/github.com/dhui/passhash)](https://goreportcard.com/report/github.com/dhui/passhash) [![GitHub Release](https://img.shields.io/github/release/dhui/passhash/all.svg)](https://github.com/dhui/passhash/releases) ![Supported Go versions](https://img.shields.io/badge/Go-1.19%2C%201.20-lightgrey.svg) [![HackerOne](https://img.shields.io/badge/HackerOne-ok-brightgreen.svg)](https://hackerone.com/passhash)
1+
# Passhash ![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/dhui/passhash/go.yml?branch=master) [![Code Coverage](https://img.shields.io/codecov/c/github/dhui/passhash.svg)](https://codecov.io/gh/dhui/passhash) [![GoDoc](https://godoc.org/github.com/dhui/passhash?status.svg)](https://godoc.org/github.com/dhui/passhash) [![Go Report Card](https://goreportcard.com/badge/github.com/dhui/passhash)](https://goreportcard.com/report/github.com/dhui/passhash) [![GitHub Release](https://img.shields.io/github/release/dhui/passhash/all.svg)](https://github.com/dhui/passhash/releases) ![Supported Go versions](https://img.shields.io/badge/Go-1.22%2C%201.23-lightgrey.svg) [![HackerOne](https://img.shields.io/badge/HackerOne-ok-brightgreen.svg)](https://hackerone.com/passhash)
22

33
passhash addresses the dismal state of password management in Go by offering easy-to-use APIs to manage credentials (e.g. password hashes)
44

0 commit comments

Comments
 (0)