Skip to content

Commit

Permalink
chore(deps): bump github.com/bluekeyes/go-gitdiff from 0.7.2 to 0.7.3 (
Browse files Browse the repository at this point in the history
…#238)

* chore(deps): bump github.com/bluekeyes/go-gitdiff from 0.7.2 to 0.7.3

Bumps [github.com/bluekeyes/go-gitdiff](https://github.com/bluekeyes/go-gitdiff) from 0.7.2 to 0.7.3.
- [Release notes](https://github.com/bluekeyes/go-gitdiff/releases)
- [Commits](bluekeyes/go-gitdiff@v0.7.2...v0.7.3)

---
updated-dependencies:
- dependency-name: github.com/bluekeyes/go-gitdiff
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update golangci-lint-action version and simplify cache skipping

Updated the version of golangci/golangci-lint-action used in GitHub Actions CI workflow from v3 to v6. Also, replaced the skip-build-cache and skip-pkg-cache options with the simpler skip-cache option.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Davide Petilli <davide@petilli.me>
  • Loading branch information
dependabot[bot] and k3rn31 authored May 29, 2024
1 parent 2e26f23 commit 44f5ff1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ jobs:
name: Validate source code with linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true
skip-cache: true

test:
name: Run the tests suite
Expand All @@ -30,9 +29,9 @@ jobs:
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests with coverage
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/MakeNowJust/heredoc v1.0.0
github.com/bluekeyes/go-gitdiff v0.7.2
github.com/bluekeyes/go-gitdiff v0.7.3
github.com/fatih/color v1.17.0
github.com/google/go-cmp v0.6.0
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ=
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
github.com/bluekeyes/go-gitdiff v0.7.2 h1:42jrcVZdjjxXtVsFNYTo/I6T1ZvIiQL+iDDLiH904hw=
github.com/bluekeyes/go-gitdiff v0.7.2/go.mod h1:QpfYYO1E0fTVHVZAZKiRjtSGY9823iCdvGXBcEzHGbM=
github.com/bluekeyes/go-gitdiff v0.7.3 h1:SElKwtm/IQPOwKs0vdowW5uAlip+P+jatagmUU8E0r4=
github.com/bluekeyes/go-gitdiff v0.7.3/go.mod h1:QpfYYO1E0fTVHVZAZKiRjtSGY9823iCdvGXBcEzHGbM=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
4 changes: 2 additions & 2 deletions internal/engine/tokenmutator_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 The Gremlins Authors
* Copyright 2024 The Gremlins Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -41,7 +41,7 @@ func TestMutantApplyAndRollback(t *testing.T) {
filePath := "sourceFile.go"
fileFullPath := filepath.Join(workdir, filePath)

err := os.WriteFile(fileFullPath, []byte(rollbackWant), os.ModePerm)
err := os.WriteFile(fileFullPath, []byte(rollbackWant), 0600)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 44f5ff1

Please sign in to comment.