Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 237e4cd

Browse files
authoredApr 25, 2024··
chore(deps): update all
1 parent 869f978 commit 237e4cd

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed
 

‎.github/workflows/ci.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
docker-build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
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@v3
22-
- uses: actions/setup-go@v3
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-go@v5
2323
- name: golangci-lint
24-
uses: golangci/golangci-lint-action@v3
24+
uses: golangci/golangci-lint-action@v5
2525
with:
2626
version: v1.50.1
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -34,9 +34,9 @@ jobs:
3434
- 1.18.x
3535
- 1.19.x
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
- name: Install Go
39-
uses: actions/setup-go@v3
39+
uses: actions/setup-go@v5
4040
with:
4141
go-version: ${{ matrix.golang }}
4242
- name: Run tests on Windows
@@ -51,12 +51,12 @@ jobs:
5151
- 1.18.x
5252
- 1.19.x
5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
- name: Install Go
56-
uses: actions/setup-go@v3
56+
uses: actions/setup-go@v5
5757
with:
5858
go-version: ${{ matrix.golang }}
59-
- uses: actions/cache@v3.2.6
59+
- uses: actions/cache@v4.0.2
6060
with:
6161
path: ~/go/pkg/mod
6262
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -78,12 +78,12 @@ jobs:
7878
- 1.18.x
7979
- 1.19.x
8080
steps:
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282
- name: Install Go
83-
uses: actions/setup-go@v3
83+
uses: actions/setup-go@v5
8484
with:
8585
go-version: ${{ matrix.golang }}
86-
- uses: actions/cache@v3.2.6
86+
- uses: actions/cache@v4.0.2
8787
with:
8888
path: ~/go/pkg/mod
8989
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}

‎.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
-
2020
name: Unshallow
2121
run: git fetch --prune --unshallow
@@ -25,27 +25,27 @@ jobs:
2525
-
2626
name: Run Semantic Release
2727
id: semantic
28-
uses: docker://ghcr.io/codfish/semantic-release-action:v1
28+
uses: docker://ghcr.io/codfish/semantic-release-action:v3
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
-
3232
name: Set up Go
3333
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
34-
uses: actions/setup-go@v3
34+
uses: actions/setup-go@v5
3535
with:
3636
go-version: ${{ matrix.golang }}
3737
-
3838
name: Cache Go modules
3939
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
40-
uses: actions/cache@v3.2.6
40+
uses: actions/cache@v4.0.2
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
4444
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
4545
-
4646
name: Run GoReleaser
4747
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
48-
uses: goreleaser/goreleaser-action@v3.2.0
48+
uses: goreleaser/goreleaser-action@v5.0.0
4949
with:
5050
version: latest
5151
args: release --rm-dist

‎.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-22.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

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

0 commit comments

Comments
 (0)
Please sign in to comment.