Skip to content

Commit 2c8f1d4

Browse files
fix(deps): update all
1 parent 68d935c commit 2c8f1d4

File tree

8 files changed

+114
-41
lines changed

8 files changed

+114
-41
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@v2.4.0
38+
uses: actions/checkout@v4.2.2
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2.4.0
16+
uses: actions/checkout@v4.2.2
1717

1818
- name: Build the container image
19-
uses: docker/build-push-action@v3
19+
uses: docker/build-push-action@v6
2020
with:
2121
repository: repoman
2222

2323
- name: Push to GitHub Packages
24-
uses: docker/build-push-action@v3
24+
uses: docker/build-push-action@v6
2525
if: github.event_name == 'release' || github.event_name == 'push'
2626
with:
2727
username: ${{ github.actor }}
@@ -52,7 +52,7 @@ jobs:
5252
if: |
5353
(github.event_name == 'release' || github.event_name == 'push') &&
5454
contains(steps.check_dockerhub_credentials.outputs.missingsecrets, 'no')
55-
uses: docker/build-push-action@v3
55+
uses: docker/build-push-action@v6
5656
with:
5757
username: ${{ secrets.DOCKER_USERNAME }}
5858
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/go.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v2.4.0
37+
uses: actions/checkout@v4.2.2
3838
- name: Set up Go
39-
uses: actions/setup-go@v2
39+
uses: actions/setup-go@v5
4040
with:
4141
go-version: ${{ matrix.golang }}
4242
- name: Cache Go modules
43-
uses: actions/cache@v2.1.7
43+
uses: actions/cache@v4.2.0
4444
with:
4545
path: ~/go/pkg/mod
4646
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -58,9 +58,9 @@ jobs:
5858
matrix:
5959
golangci_lint: [v1.53.3]
6060
steps:
61-
- uses: actions/checkout@v2.4.0
61+
- uses: actions/checkout@v4.2.2
6262
- name: golangci-lint
63-
uses: golangci/golangci-lint-action@v3.2.0
63+
uses: golangci/golangci-lint-action@v6.2.0
6464
with:
6565
version: ${{ matrix.golangci_lint }}
6666
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -74,9 +74,9 @@ jobs:
7474
matrix:
7575
golang: [1.20.x]
7676
steps:
77-
- uses: actions/checkout@v2.4.0
77+
- uses: actions/checkout@v4.2.2
7878
- name: Install Go
79-
uses: actions/setup-go@v2
79+
uses: actions/setup-go@v5
8080
with:
8181
go-version: ${{ matrix.golang }}
8282
- name: Run tests on Windows
@@ -92,12 +92,12 @@ jobs:
9292
OS: macos-latest
9393
GOLANG: ${{ matrix.golang }}
9494
steps:
95-
- uses: actions/checkout@v2.4.0
95+
- uses: actions/checkout@v4.2.2
9696
- name: Install Go
97-
uses: actions/setup-go@v2
97+
uses: actions/setup-go@v5
9898
with:
9999
go-version: ${{ matrix.golang }}
100-
- uses: actions/cache@v2.1.7
100+
- uses: actions/cache@v4.2.0
101101
with:
102102
path: ~/go/pkg/mod
103103
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -112,7 +112,7 @@ jobs:
112112
git --no-pager diff go.mod go.sum
113113
git --no-pager diff --quiet go.mod go.sum
114114
- name: Upload coverage to Codecov
115-
uses: codecov/codecov-action@v2.1.0
115+
uses: codecov/codecov-action@v5.3.1
116116
with:
117117
#token: ${{ secrets.CODECOV_TOKEN }}
118118
file: ./coverage.txt
@@ -130,12 +130,12 @@ jobs:
130130
OS: ubuntu-latest
131131
GOLANG: ${{ matrix.golang }}
132132
steps:
133-
- uses: actions/checkout@v2.4.0
133+
- uses: actions/checkout@v4.2.2
134134
- name: Install Go
135-
uses: actions/setup-go@v2
135+
uses: actions/setup-go@v5
136136
with:
137137
go-version: ${{ matrix.golang }}
138-
- uses: actions/cache@v2.1.7
138+
- uses: actions/cache@v4.2.0
139139
with:
140140
path: ~/go/pkg/mod
141141
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -150,7 +150,7 @@ jobs:
150150
- name: Run tests on Unix-like operating systems
151151
run: make unittest
152152
- name: Upload coverage to Codecov
153-
uses: codecov/codecov-action@v2.1.0
153+
uses: codecov/codecov-action@v5.3.1
154154
with:
155155
#token: ${{ secrets.CODECOV_TOKEN }}
156156
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@v2.4.0
15+
- uses: actions/checkout@v4.2.2
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@v2.4.0
29+
- uses: actions/checkout@v4.2.2
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
@@ -15,34 +15,34 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v2.4.0
18+
uses: actions/checkout@v4.2.2
1919
-
2020
name: Unshallow
2121
run: git fetch --prune --unshallow
2222
-
2323
name: Run Semantic Release
2424
id: semantic
25-
uses: docker://ghcr.io/codfish/semantic-release-action:v1
25+
uses: docker://ghcr.io/codfish/semantic-release-action:v3
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2828
-
2929
name: Set up Go
3030
if: steps.semantic.outputs.new-release-published == 'true'
31-
uses: actions/setup-go@v2
31+
uses: actions/setup-go@v5
3232
with:
3333
go-version: ${{ matrix.golang }}
3434
-
3535
name: Cache Go modules
3636
if: steps.semantic.outputs.new-release-published == 'true'
37-
uses: actions/cache@v2.1.7
37+
uses: actions/cache@v4.2.0
3838
with:
3939
path: ~/go/pkg/mod
4040
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
4141
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
4242
-
4343
name: Run GoReleaser
4444
if: steps.semantic.outputs.new-release-published == 'true'
45-
uses: goreleaser/goreleaser-action@v2.8.1
45+
uses: goreleaser/goreleaser-action@v6.1.0
4646
with:
4747
version: latest
4848
args: release --clean

go.mod

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

go.sum

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

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.0",
66
"remark-cli": "10.0.1",

0 commit comments

Comments
 (0)