Skip to content

Commit

Permalink
chore(deps): update all to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Jun 7, 2022
1 parent cc57e9b commit 5ac331a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/go.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
with:
Expand All @@ -46,9 +46,9 @@ jobs:
golang:
- 1.16.x
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- name: Run tests on Windows
Expand All @@ -65,12 +65,12 @@ jobs:
OS: macos-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v2.1.6
- uses: actions/cache@v3.0.4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Expand All @@ -86,7 +86,7 @@ jobs:
git --no-pager diff go.mod go.sum
git --no-pager diff --quiet go.mod go.sum
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
uses: codecov/codecov-action@v3.1.0
with:
#token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
Expand All @@ -107,12 +107,12 @@ jobs:
OS: ubuntu-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v2.1.6
- uses: actions/cache@v3.0.4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Run tests on Unix-like operating systems
run: make unittest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
uses: codecov/codecov-action@v3.1.0
with:
#token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release-Notes Preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/release-notes-preview@v1.6.2
Expand All @@ -26,7 +26,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
with:
depth: 1
- uses: nosborn/github-action-markdown-cli@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
-
name: Unshallow
run: git fetch --prune --unshallow
Expand All @@ -24,7 +24,7 @@ jobs:
-
name: Set up Go
if: steps.semantic.outputs.new-release-published == 'true'
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.15.x
#-
Expand Down

0 comments on commit 5ac331a

Please sign in to comment.