Skip to content

Commit

Permalink
Merge pull request #235 from deining/fix-typo
Browse files Browse the repository at this point in the history
Bump GitHub workflow actions
  • Loading branch information
fatih committed Aug 15, 2024
2 parents b6598b1 + 9b9653e commit cb154c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.22.0'

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Run go mod tidy
run: |
set -e
Expand All @@ -39,9 +39,9 @@ jobs:
run: "go vet ./..."

- name: Staticcheck
uses: dominikh/staticcheck-action@v1.3.0
uses: dominikh/staticcheck-action@v1.3.1
with:
version: "2023.1.7"
version: "2024.1.1"
install-go: false

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion color.go
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ func (c *Color) format() string {

func (c *Color) unformat() string {
//return fmt.Sprintf("%s[%dm", escape, Reset)
//for each element in sequence let's use the speficic reset escape, ou the generic one if not found
//for each element in sequence let's use the specific reset escape, or the generic one if not found
format := make([]string, len(c.params))
for i, v := range c.params {
format[i] = strconv.Itoa(int(Reset))
Expand Down

0 comments on commit cb154c0

Please sign in to comment.