Skip to content

Commit

Permalink
Bump golang.org/x/sys from 0.0.0-20201015000850-e3ed0017c211 to 0.1.0…
Browse files Browse the repository at this point in the history
… in /native (#3)

* Bump golang.org/x/sys in /native

Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20201015000850-e3ed0017c211 to 0.1.0.
- [Release notes](https://github.com/golang/sys/releases)
- [Commits](https://github.com/golang/sys/commits/v0.1.0)

---
updated-dependencies:
- dependency-name: golang.org/x/sys
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fixed build

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gregor Noczinski <[email protected]>
  • Loading branch information
dependabot[bot] and blaubaer authored Feb 28, 2023
1 parent 2bbaed4 commit 2e46251
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,35 @@ on: [ push, pull_request ]
name: Continuous Integration
jobs:
lint:
name: Lint
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.15.x
go-version: 1.20.1

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install dependencies
run: |
go mod download
- name: Install golangci-lint
run: |
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci-lint --version
- name: Lint
Expand All @@ -36,22 +41,23 @@ jobs:
golangci-lint run --color=always -c ../.golangci.yml ./...
test:
name: Test
strategy:
matrix:
go-version: [ 1.13.x, 1.14.x, 1.15.x ]
go-version: [ 1.13.0, 1.14.0, 1.15.0 ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -101,22 +107,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.15.x
go-version: 1.20.1

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install goveralls
env:
GO111MODULE: off
run: go get github.com/mattn/goveralls
run: go install github.com/mattn/goveralls@latest

- name: Send coverage finish
env:
Expand Down
2 changes: 1 addition & 1 deletion native/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ replace github.com/echocat/slf4g => ../

require (
github.com/echocat/slf4g v0.0.0
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211
golang.org/x/sys v0.1.0
)
7 changes: 2 additions & 5 deletions native/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
github.com/echocat/slf4g/native v0.6.1/go.mod h1:TRok8ZG3/HTStEWhqh4GsvIx0I3tkABj9VztLtk9kkk=
github.com/echocat/slf4g/native v0.9.0/go.mod h1:AzxGz/1bNWNg9g0ImIicj1YdUt/CakqdU2iD7eRsLqw=
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211 h1:9UQO31fZ+0aKQOFldThf7BKPMJTiBfWycGh/u3UoO88=
golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 comments on commit 2e46251

Please sign in to comment.