Skip to content

Commit 441ba06

Browse files
fix(deps): update all
1 parent 79cf5d0 commit 441ba06

File tree

7 files changed

+37
-37
lines changed

7 files changed

+37
-37
lines changed

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v2
42+
uses: github/codeql-action/init@v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v2
53+
uses: github/codeql-action/autobuild@v3
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v2
67+
uses: github/codeql-action/analyze@v3

.github/workflows/docker.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
has-docker: ${{ steps.info.outputs.has-docker }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: '0'
2020
- uses: moul/repoman-action@v1
@@ -27,15 +27,15 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131

3232
- name: Build the container image
33-
uses: docker/build-push-action@v4.0.0
33+
uses: docker/build-push-action@v6.13.0
3434
with:
3535
repository: golang-repo-template
3636

3737
- name: Push to GitHub Packages
38-
uses: docker/build-push-action@v4.0.0
38+
uses: docker/build-push-action@v6.13.0
3939
if: github.event_name == 'release' || github.event_name == 'push'
4040
with:
4141
username: ${{ github.actor }}
@@ -66,7 +66,7 @@ jobs:
6666
if: |
6767
(github.event_name == 'release' || github.event_name == 'push') &&
6868
contains(steps.check_dockerhub_credentials.outputs.missingsecrets, 'no')
69-
uses: docker/build-push-action@v4.0.0
69+
uses: docker/build-push-action@v6.13.0
7070
with:
7171
username: ${{ secrets.DOCKER_USERNAME }}
7272
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/go.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
outputs:
3737
has-go-binary: ${{ steps.info.outputs.has-go-binary }}
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
with:
4141
fetch-depth: '0'
4242
- uses: moul/repoman-action@v1
@@ -51,19 +51,19 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
- name: Set up Go
56-
uses: actions/setup-go@v4
56+
uses: actions/setup-go@v5
5757
with:
5858
go-version: ${{ matrix.golang }}
5959
- name: Cache Go modules
60-
uses: actions/cache@v3.3.1
60+
uses: actions/cache@v4.2.1
6161
with:
6262
path: ~/go/pkg/mod
6363
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
6464
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
6565
- name: Run GoReleaser (Dry Run)
66-
uses: goreleaser/goreleaser-action@v4.2.0
66+
uses: goreleaser/goreleaser-action@v6.2.1
6767
with:
6868
version: latest
6969
args: release --rm-dist --snapshot --skip-publish
@@ -76,11 +76,11 @@ jobs:
7676
golangci_lint: [v1.53.3]
7777
golang: [1.20.x]
7878
steps:
79-
- uses: actions/checkout@v3
80-
- uses: actions/setup-go@v4
79+
- uses: actions/checkout@v4
80+
- uses: actions/setup-go@v5
8181
with:
8282
go-version: ${{ matrix.golang }}
83-
- uses: golangci/golangci-lint-action@v3
83+
- uses: golangci/golangci-lint-action@v6
8484
with:
8585
version: ${{ matrix.golangci_lint }}
8686
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -95,9 +95,9 @@ jobs:
9595
golang:
9696
- 1.20.x
9797
steps:
98-
- uses: actions/checkout@v3
98+
- uses: actions/checkout@v4
9999
- name: Install Go
100-
uses: actions/setup-go@v4
100+
uses: actions/setup-go@v5
101101
with:
102102
go-version: ${{ matrix.golang }}
103103
- name: Run tests on Windows
@@ -114,12 +114,12 @@ jobs:
114114
OS: macos-latest
115115
GOLANG: ${{ matrix.golang }}
116116
steps:
117-
- uses: actions/checkout@v3
117+
- uses: actions/checkout@v4
118118
- name: Install Go
119-
uses: actions/setup-go@v4
119+
uses: actions/setup-go@v5
120120
with:
121121
go-version: ${{ matrix.golang }}
122-
- uses: actions/cache@v3.3.1
122+
- uses: actions/cache@v4.2.1
123123
with:
124124
path: ~/go/pkg/mod
125125
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -135,7 +135,7 @@ jobs:
135135
git --no-pager diff go.mod go.sum
136136
git --no-pager diff --quiet go.mod go.sum
137137
- name: Upload coverage to Codecov
138-
uses: codecov/codecov-action@v3.1.4
138+
uses: codecov/codecov-action@v5.3.1
139139
with:
140140
#token: ${{ secrets.CODECOV_TOKEN }}
141141
file: ./coverage.txt
@@ -155,12 +155,12 @@ jobs:
155155
OS: ubuntu-latest
156156
GOLANG: ${{ matrix.golang }}
157157
steps:
158-
- uses: actions/checkout@v3
158+
- uses: actions/checkout@v4
159159
- name: Install Go
160-
uses: actions/setup-go@v4
160+
uses: actions/setup-go@v5
161161
with:
162162
go-version: ${{ matrix.golang }}
163-
- uses: actions/cache@v3.3.1
163+
- uses: actions/cache@v4.2.1
164164
with:
165165
path: ~/go/pkg/mod
166166
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -176,7 +176,7 @@ jobs:
176176
- name: Run tests on Unix-like operating systems
177177
run: make unittest
178178
- name: Upload coverage to Codecov
179-
uses: codecov/codecov-action@v3.1.4
179+
uses: codecov/codecov-action@v5.3.1
180180
with:
181181
#token: ${{ secrets.CODECOV_TOKEN }}
182182
file: ./coverage.txt

.github/workflows/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Release-Notes Preview
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- run: |
1717
git fetch --prune --unshallow --tags
1818
- uses: snyk/[email protected]
@@ -26,7 +26,7 @@ jobs:
2626
name: Documentation
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
depth: 1
3232
- uses: nosborn/github-action-markdown-cli@master

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
-
2020
name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
-
2323
name: Unshallow
2424
run: git fetch --prune --unshallow
@@ -28,27 +28,27 @@ jobs:
2828
-
2929
name: Run Semantic Release
3030
id: semantic
31-
uses: docker://ghcr.io/codfish/semantic-release-action:v2
31+
uses: docker://ghcr.io/codfish/semantic-release-action:v3
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
-
3535
name: Set up Go
3636
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
37-
uses: actions/setup-go@v4
37+
uses: actions/setup-go@v5
3838
with:
3939
go-version: ${{ matrix.golang }}
4040
-
4141
name: Cache Go modules
4242
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
43-
uses: actions/cache@v3.3.1
43+
uses: actions/cache@v4.2.1
4444
with:
4545
path: ~/go/pkg/mod
4646
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
4747
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
4848
-
4949
name: Run GoReleaser
5050
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
51-
uses: goreleaser/goreleaser-action@v4.2.0
51+
uses: goreleaser/goreleaser-action@v6.2.1
5252
with:
5353
version: latest
5454
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-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

tool/lint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"alex": "10.0.0",
3+
"alex": "11.0.1",
44
"markdown-spellcheck": "1.3.1",
55
"markdownlint-cli": "0.31.1",
66
"remark-cli": "11.0.0",

0 commit comments

Comments
 (0)