Skip to content

Commit fb1d85e

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

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/go.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
golangci-lint:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v2.4.0
32+
- uses: actions/checkout@v4.2.2
3333
- name: golangci-lint
34-
uses: golangci/golangci-lint-action@v3.2.0
34+
uses: golangci/golangci-lint-action@v6.5.2
3535
with:
3636
version: v1.28
3737
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -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.2.2
5050
- name: Install Go
51-
uses: actions/setup-go@v2
51+
uses: actions/setup-go@v5
5252
with:
5353
go-version: ${{ matrix.golang }}
5454
- name: Run tests on Windows
@@ -65,12 +65,12 @@ jobs:
6565
OS: macos-latest
6666
GOLANG: ${{ matrix.golang }}
6767
steps:
68-
- uses: actions/checkout@v2.4.0
68+
- uses: actions/checkout@v4.2.2
6969
- name: Install Go
70-
uses: actions/setup-go@v2
70+
uses: actions/setup-go@v5
7171
with:
7272
go-version: ${{ matrix.golang }}
73-
- uses: actions/cache@v3.0.4
73+
- uses: actions/cache@v4.2.3
7474
with:
7575
path: ~/go/pkg/mod
7676
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -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@v5.4.0
8888
with:
8989
#token: ${{ secrets.CODECOV_TOKEN }}
9090
file: ./coverage.txt
@@ -106,12 +106,12 @@ jobs:
106106
OS: ubuntu-latest
107107
GOLANG: ${{ matrix.golang }}
108108
steps:
109-
- uses: actions/checkout@v2.4.0
109+
- uses: actions/checkout@v4.2.2
110110
- name: Install Go
111-
uses: actions/setup-go@v2
111+
uses: actions/setup-go@v5
112112
with:
113113
go-version: ${{ matrix.golang }}
114-
- uses: actions/cache@v3.0.4
114+
- uses: actions/cache@v4.2.3
115115
with:
116116
path: ~/go/pkg/mod
117117
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -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@v5.4.0
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.2.2
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.2.2
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@v3.5.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
-

0 commit comments

Comments
 (0)