Skip to content

Commit 6bbc365

Browse files
chore(deps): update all
1 parent d699140 commit 6bbc365

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v2
36+
uses: github/codeql-action/autobuild@v4
3737
if: ${{ matrix.language == 'go' || matrix.language == 'javascript' }}
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v2
40+
uses: github/codeql-action/analyze@v4
4141
with:
4242
category: "/language:${{ matrix.language }}"

.github/workflows/go.yml

Lines changed: 12 additions & 12 deletions
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@v5.0.0
3333
- name: golangci-lint
34-
uses: golangci/golangci-lint-action@v3.2.0
34+
uses: golangci/golangci-lint-action@v9.0.0
3535
with:
3636
version: v1.28
3737
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -47,9 +47,9 @@ jobs:
4747
#- 1.13
4848
- 1.14
4949
steps:
50-
- uses: actions/checkout@v2.4.0
50+
- uses: actions/checkout@v5.0.0
5151
- name: Install Go
52-
uses: actions/setup-go@v2
52+
uses: actions/setup-go@v6
5353
with:
5454
go-version: ${{ matrix.golang }}
5555
- name: Run tests on Windows
@@ -66,12 +66,12 @@ jobs:
6666
OS: macos-latest
6767
GOLANG: ${{ matrix.golang }}
6868
steps:
69-
- uses: actions/checkout@v2.4.0
69+
- uses: actions/checkout@v5.0.0
7070
- name: Install Go
71-
uses: actions/setup-go@v2
71+
uses: actions/setup-go@v6
7272
with:
7373
go-version: ${{ matrix.golang }}
74-
- uses: actions/cache@v3.0.4
74+
- uses: actions/cache@v4.3.0
7575
with:
7676
path: ~/go/pkg/mod
7777
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -85,7 +85,7 @@ jobs:
8585
git --no-pager diff go.mod go.sum
8686
git --no-pager diff --quiet go.mod go.sum
8787
- name: Upload coverage to Codecov
88-
uses: codecov/codecov-action@v2.1.0
88+
uses: codecov/codecov-action@v5.5.1
8989
with:
9090
#token: ${{ secrets.CODECOV_TOKEN }}
9191
file: ./coverage.txt
@@ -107,12 +107,12 @@ jobs:
107107
OS: ubuntu-latest
108108
GOLANG: ${{ matrix.golang }}
109109
steps:
110-
- uses: actions/checkout@v2.4.0
110+
- uses: actions/checkout@v5.0.0
111111
- name: Install Go
112-
uses: actions/setup-go@v2
112+
uses: actions/setup-go@v6
113113
with:
114114
go-version: ${{ matrix.golang }}
115-
- uses: actions/cache@v3.0.4
115+
- uses: actions/cache@v4.3.0
116116
with:
117117
path: ~/go/pkg/mod
118118
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -126,7 +126,7 @@ jobs:
126126
- name: Run tests on Unix-like operating systems
127127
run: make unittest CI=true
128128
- name: Upload coverage to Codecov
129-
uses: codecov/codecov-action@v2.1.0
129+
uses: codecov/codecov-action@v5.5.1
130130
with:
131131
#token: ${{ secrets.CODECOV_TOKEN }}
132132
file: ./coverage.txt

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
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@v5.0.0
1515
- run: |
1616
git fetch --prune --unshallow --tags
1717
- uses: snyk/[email protected]

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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@v5.0.0
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
21+
uses: codfish/semantic-release-action@v4
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
-

0 commit comments

Comments
 (0)