Skip to content

Commit 3288894

Browse files
fix(deps): update all
1 parent f9c8f60 commit 3288894

File tree

5 files changed

+33
-16
lines changed

5 files changed

+33
-16
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111
docker-build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- name: Build the Docker image
1616
run: docker build . --file Dockerfile
1717
golangci-lint:
1818
name: golangci-lint
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: lint
23-
uses: golangci/golangci-lint-action@v3
23+
uses: golangci/golangci-lint-action@v6
2424
with:
2525
version: v1.50.1
2626
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -32,9 +32,9 @@ jobs:
3232
golang:
3333
- 1.16.x
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3636
- name: Install Go
37-
uses: actions/setup-go@v2
37+
uses: actions/setup-go@v5
3838
with:
3939
go-version: ${{ matrix.golang }}
4040
- name: Run tests on Windows
@@ -48,12 +48,12 @@ jobs:
4848
golang:
4949
- 1.16.x
5050
steps:
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v4
5252
- name: Install Go
53-
uses: actions/setup-go@v2
53+
uses: actions/setup-go@v5
5454
with:
5555
go-version: ${{ matrix.golang }}
56-
- uses: actions/cache@v2.1.7
56+
- uses: actions/cache@v4.2.2
5757
with:
5858
path: ~/go/pkg/mod
5959
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -72,12 +72,12 @@ jobs:
7272
- 1.15.x
7373
- 1.16.x
7474
steps:
75-
- uses: actions/checkout@v2
75+
- uses: actions/checkout@v4
7676
- name: Install Go
77-
uses: actions/setup-go@v2
77+
uses: actions/setup-go@v5
7878
with:
7979
go-version: ${{ matrix.golang }}
80-
- uses: actions/cache@v2.1.7
80+
- uses: actions/cache@v4.2.2
8181
with:
8282
path: ~/go/pkg/mod
8383
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- uses: codfish/semantic-release-action@v1.9.0
10+
- uses: codfish/semantic-release-action@v3.5.0
1111
if: github.ref == 'refs/heads/master'
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/semgrep.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ name: Semgrep
1111
jobs:
1212
semgrep:
1313
name: Scan
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
env:
1616
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
1717
container:
1818
image: returntocorp/semgrep
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- run: semgrep ci

go.mod

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.sum

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)