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 5745925

Browse files
authoredNov 20, 2024··
chore(deps): update all
1 parent 1e94ae7 commit 5745925

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed
 

‎.github/workflows/go.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
matrix:
3333
golangci_lint: [v1.38]
3434
steps:
35-
- uses: actions/checkout@v2.4.0
35+
- uses: actions/checkout@v4.2.2
3636
- name: golangci-lint
37-
uses: golangci/golangci-lint-action@v3.2.0
37+
uses: golangci/golangci-lint-action@v6.1.1
3838
with:
3939
version: ${{ matrix.golangci_lint }}
4040
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -48,9 +48,9 @@ jobs:
4848
matrix:
4949
golang: [1.16.x]
5050
steps:
51-
- uses: actions/checkout@v2.4.0
51+
- uses: actions/checkout@v4.2.2
5252
- name: Install Go
53-
uses: actions/setup-go@v2
53+
uses: actions/setup-go@v5
5454
with:
5555
go-version: ${{ matrix.golang }}
5656
- name: Run tests on Windows
@@ -66,12 +66,12 @@ jobs:
6666
OS: macos-latest
6767
GOLANG: ${{ matrix.golang }}
6868
steps:
69-
- uses: actions/checkout@v2.4.0
69+
- uses: actions/checkout@v4.2.2
7070
- name: Install Go
71-
uses: actions/setup-go@v2
71+
uses: actions/setup-go@v5
7272
with:
7373
go-version: ${{ matrix.golang }}
74-
- uses: actions/cache@v3.0.4
74+
- uses: actions/cache@v4.1.2
7575
with:
7676
path: ~/go/pkg/mod
7777
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -86,7 +86,7 @@ jobs:
8686
git --no-pager diff go.mod go.sum
8787
git --no-pager diff --quiet go.mod go.sum
8888
- name: Upload coverage to Codecov
89-
uses: codecov/codecov-action@v2.1.0
89+
uses: codecov/codecov-action@v5.0.6
9090
with:
9191
#token: ${{ secrets.CODECOV_TOKEN }}
9292
file: ./coverage.txt
@@ -107,12 +107,12 @@ jobs:
107107
OS: ubuntu-latest
108108
GOLANG: ${{ matrix.golang }}
109109
steps:
110-
- uses: actions/checkout@v2.4.0
110+
- uses: actions/checkout@v4.2.2
111111
- name: Install Go
112-
uses: actions/setup-go@v2
112+
uses: actions/setup-go@v5
113113
with:
114114
go-version: ${{ matrix.golang }}
115-
- uses: actions/cache@v3.0.4
115+
- uses: actions/cache@v4.1.2
116116
with:
117117
path: ~/go/pkg/mod
118118
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -127,7 +127,7 @@ jobs:
127127
- name: Run tests on Unix-like operating systems
128128
run: make unittest
129129
- name: Upload coverage to Codecov
130-
uses: codecov/codecov-action@v2.1.0
130+
uses: codecov/codecov-action@v5.0.6
131131
with:
132132
#token: ${{ secrets.CODECOV_TOKEN }}
133133
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/release-notes-preview@v1.6.2
@@ -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

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
steps:
1515
-
1616
name: Checkout
17-
uses: actions/checkout@v2.4.0
17+
uses: actions/checkout@v4.2.2
1818
-
1919
name: Unshallow
2020
run: git fetch --prune --unshallow
2121
-
2222
name: Run Semantic Release
2323
id: semantic
24-
uses: docker://ghcr.io/codfish/semantic-release-action:v1
24+
uses: docker://ghcr.io/codfish/semantic-release-action:v3
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
-
@@ -34,17 +34,17 @@ jobs:
3434
set -x +e
3535
curl -i $url
3636
- name: "Validates GO releaser config"
37-
uses: goreleaser/goreleaser-action@v2.9.0
37+
uses: goreleaser/goreleaser-action@v6.1.0
3838
with:
3939
args: check
4040
-
4141
name: Set up Go
42-
uses: actions/setup-go@v2
42+
uses: actions/setup-go@v5
4343
with:
4444
go-version: ${{ matrix.golang }}
4545
-
4646
name: Cache Go modules
47-
uses: actions/cache@v3.0.4
47+
uses: actions/cache@v4.1.2
4848
with:
4949
path: ~/go/pkg/mod
5050
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -55,7 +55,7 @@ jobs:
5555
make bundle
5656
- name: Run GoReleaser
5757
if: steps.semantic.outputs.new-release-published == 'true'
58-
uses: goreleaser/goreleaser-action@v2.9.0
58+
uses: goreleaser/goreleaser-action@v6.1.0
5959
with:
6060
version: latest
6161
args: release --rm-dist

‎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": "9.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.