Skip to content

Commit 520ab44

Browse files
chore(deps): update all
1 parent 984e87f commit 520ab44

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/go.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
golangci-lint:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v2.4.0
32+
- uses: actions/checkout@v4.1.1
3333
- name: golangci-lint
3434
uses: golangci/[email protected]
3535
with:
@@ -46,9 +46,9 @@ jobs:
4646
golang:
4747
- 1.16.x
4848
steps:
49-
- uses: actions/checkout@v2.4.0
49+
- uses: actions/checkout@v4.1.1
5050
- name: Install Go
51-
uses: actions/setup-go@v2
51+
uses: actions/setup-go@v4
5252
with:
5353
go-version: ${{ matrix.golang }}
5454
- name: Run tests on Windows
@@ -65,9 +65,9 @@ jobs:
6565
OS: macos-latest
6666
GOLANG: ${{ matrix.golang }}
6767
steps:
68-
- uses: actions/checkout@v2.4.0
68+
- uses: actions/checkout@v4.1.1
6969
- name: Install Go
70-
uses: actions/setup-go@v2
70+
uses: actions/setup-go@v4
7171
with:
7272
go-version: ${{ matrix.golang }}
7373
- uses: actions/[email protected]
@@ -84,7 +84,7 @@ jobs:
8484
git --no-pager diff go.mod go.sum
8585
git --no-pager diff --quiet go.mod go.sum
8686
- name: Upload coverage to Codecov
87-
uses: codecov/codecov-action@v2.1.0
87+
uses: codecov/codecov-action@v3.1.4
8888
with:
8989
#token: ${{ secrets.CODECOV_TOKEN }}
9090
file: ./coverage.txt
@@ -106,9 +106,9 @@ jobs:
106106
OS: ubuntu-latest
107107
GOLANG: ${{ matrix.golang }}
108108
steps:
109-
- uses: actions/checkout@v2.4.0
109+
- uses: actions/checkout@v4.1.1
110110
- name: Install Go
111-
uses: actions/setup-go@v2
111+
uses: actions/setup-go@v4
112112
with:
113113
go-version: ${{ matrix.golang }}
114114
- uses: actions/[email protected]
@@ -125,7 +125,7 @@ jobs:
125125
- name: Run tests on Unix-like operating systems
126126
run: make unittest
127127
- name: Upload coverage to Codecov
128-
uses: codecov/codecov-action@v2.1.0
128+
uses: codecov/codecov-action@v3.1.4
129129
with:
130130
#token: ${{ secrets.CODECOV_TOKEN }}
131131
file: ./coverage.txt

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Release-Notes Preview
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2.4.0
14+
- uses: actions/checkout@v4.1.1
1515
- run: |
1616
git fetch --prune --unshallow --tags
1717
- uses: snyk/[email protected]

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v2.4.0
14+
uses: actions/checkout@v4.1.1
1515
-
1616
name: Unshallow
1717
run: git fetch --prune --unshallow
1818
-
1919
name: Run Semantic Release
2020
id: semantic
21-
uses: codfish/semantic-release-action@v1.9.0
21+
uses: codfish/semantic-release-action@v2.2.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
-

0 commit comments

Comments
 (0)