Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e8c01f

Browse files
fix(deps): update all
1 parent f55e24a commit 7e8c01f

File tree

8 files changed

+78
-36
lines changed

8 files changed

+78
-36
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
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.3.4
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@v1
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@v1
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@v1
67+
uses: github/codeql-action/analyze@v3

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
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@v2
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@v2.3.4
30+
uses: actions/checkout@v4.2.2
3131

3232
- name: Build the container image
33-
uses: docker/build-push-action@v2.5.0
33+
uses: docker/build-push-action@v6.15.0
3434
with:
3535
repository: midcat
3636

3737
- name: Push to GitHub Packages
38-
uses: docker/build-push-action@v2.5.0
38+
uses: docker/build-push-action@v6.15.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@v2.5.0
69+
uses: docker/build-push-action@v6.15.0
7070
with:
7171
username: ${{ secrets.DOCKER_USERNAME }}
7272
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/go.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
outputs:
3333
has-go-binary: ${{ steps.info.outputs.has-go-binary }}
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: '0'
3838
- uses: moul/repoman-action@v1
@@ -47,19 +47,19 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v2.3.4
50+
uses: actions/checkout@v4.2.2
5151
- name: Set up Go
52-
uses: actions/setup-go@v2
52+
uses: actions/setup-go@v5
5353
with:
5454
go-version: ${{ matrix.golang }}
5555
- name: Cache Go modules
56-
uses: actions/cache@v2.1.6
56+
uses: actions/cache@v4.2.3
5757
with:
5858
path: ~/go/pkg/mod
5959
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
6060
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
6161
- name: Run GoReleaser (Dry Run)
62-
uses: goreleaser/goreleaser-action@v2.6.1
62+
uses: goreleaser/goreleaser-action@v6.3.0
6363
with:
6464
version: latest
6565
args: release --rm-dist --snapshot --skip-publish
@@ -71,10 +71,10 @@ jobs:
7171
matrix:
7272
golangci_lint: [v1.38]
7373
steps:
74-
- uses: actions/checkout@v2.3.4
74+
- uses: actions/checkout@v4.2.2
7575
- name: golangci-lint
7676
if: false # temporarily disabled
77-
uses: golangci/golangci-lint-action@v2.5.2
77+
uses: golangci/golangci-lint-action@v7.0.0
7878
with:
7979
version: ${{ matrix.golangci_lint }}
8080
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -88,9 +88,9 @@ jobs:
8888
matrix:
8989
golang: [1.16.x]
9090
steps:
91-
- uses: actions/checkout@v2.3.4
91+
- uses: actions/checkout@v4.2.2
9292
- name: Install Go
93-
uses: actions/setup-go@v2
93+
uses: actions/setup-go@v5
9494
with:
9595
go-version: ${{ matrix.golang }}
9696
- name: Run tests on Windows
@@ -106,12 +106,12 @@ jobs:
106106
OS: macos-latest
107107
GOLANG: ${{ matrix.golang }}
108108
steps:
109-
- uses: actions/checkout@v2.3.4
109+
- uses: actions/checkout@v4.2.2
110110
- name: Install Go
111-
uses: actions/setup-go@v2
111+
uses: actions/setup-go@v5
112112
with:
113113
go-version: ${{ matrix.golang }}
114-
- uses: actions/cache@v2.1.6
114+
- uses: actions/cache@v4.2.3
115115
with:
116116
path: ~/go/pkg/mod
117117
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -127,7 +127,7 @@ jobs:
127127
git --no-pager diff go.mod go.sum
128128
git --no-pager diff --quiet go.mod go.sum
129129
- name: Upload coverage to Codecov
130-
uses: codecov/codecov-action@v1.5.2
130+
uses: codecov/codecov-action@v5.4.0
131131
with:
132132
#token: ${{ secrets.CODECOV_TOKEN }}
133133
file: ./coverage.txt
@@ -148,12 +148,12 @@ jobs:
148148
OS: ubuntu-latest
149149
GOLANG: ${{ matrix.golang }}
150150
steps:
151-
- uses: actions/checkout@v2.3.4
151+
- uses: actions/checkout@v4.2.2
152152
- name: Install Go
153-
uses: actions/setup-go@v2
153+
uses: actions/setup-go@v5
154154
with:
155155
go-version: ${{ matrix.golang }}
156-
- uses: actions/cache@v2.1.6
156+
- uses: actions/cache@v4.2.3
157157
with:
158158
path: ~/go/pkg/mod
159159
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -169,7 +169,7 @@ jobs:
169169
- name: Run tests on Unix-like operating systems
170170
run: make unittest
171171
- name: Upload coverage to Codecov
172-
uses: codecov/codecov-action@v1.5.2
172+
uses: codecov/codecov-action@v5.4.0
173173
with:
174174
#token: ${{ secrets.CODECOV_TOKEN }}
175175
file: ./coverage.txt

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
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.3.4
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.3.4
29+
- uses: actions/checkout@v4.2.2
3030
with:
3131
depth: 1
3232
- uses: nosborn/github-action-markdown-cli@master

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v2.3.4
18+
uses: actions/checkout@v4.2.2
1919
-
2020
name: Unshallow
2121
run: git fetch --prune --unshallow
@@ -25,19 +25,19 @@ 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@v2
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@v2.1.6
40+
uses: actions/cache@v4.2.3
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}

go.mod

Lines changed: 43 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.sum

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tool/lint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"alex": "9.1.0",
3+
"alex": "11.0.1",
44
"markdown-spellcheck": "1.3.1",
55
"markdownlint-cli": "0.27.1",
66
"remark-cli": "9.0.0",

0 commit comments

Comments
 (0)