Skip to content

Commit 115cd16

Browse files
fix(deps): update all
1 parent 530c0a2 commit 115cd16

File tree

7 files changed

+77
-31
lines changed

7 files changed

+77
-31
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
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
16+
uses: actions/checkout@v4
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: converter
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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232
- name: Checkout
3333
uses: actions/checkout@master
3434
- name: Set up Go
35-
uses: actions/setup-go@v2
35+
uses: actions/setup-go@v5
3636
with:
3737
go-version: 1.16.x
3838
- name: Cache Go modules
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/go/pkg/mod
4242
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
4343
restore-keys: |
4444
${{ runner.os }}-go-
4545
- name: Run GoReleaser (Dry Run)
46-
uses: goreleaser/goreleaser-action@v2
46+
uses: goreleaser/goreleaser-action@v6
4747
with:
4848
version: latest
4949
args: release --rm-dist --snapshot --skip-publish
@@ -52,9 +52,9 @@ jobs:
5252
golangci-lint:
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v4
5656
- name: golangci-lint
57-
uses: golangci/golangci-lint-action@v2
57+
uses: golangci/golangci-lint-action@v7
5858
with:
5959
version: v1.31
6060
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -69,9 +69,9 @@ jobs:
6969
golang:
7070
- 1.16.x
7171
steps:
72-
- uses: actions/checkout@v2
72+
- uses: actions/checkout@v4
7373
- name: Install Go
74-
uses: actions/setup-go@v2
74+
uses: actions/setup-go@v5
7575
with:
7676
go-version: ${{ matrix.golang }}
7777
- name: Run tests on Windows
@@ -88,12 +88,12 @@ jobs:
8888
OS: macos-latest
8989
GOLANG: ${{ matrix.golang }}
9090
steps:
91-
- uses: actions/checkout@v2
91+
- uses: actions/checkout@v4
9292
- name: Install Go
93-
uses: actions/setup-go@v2
93+
uses: actions/setup-go@v5
9494
with:
9595
go-version: ${{ matrix.golang }}
96-
- uses: actions/cache@v2
96+
- uses: actions/cache@v4
9797
with:
9898
path: ~/go/pkg/mod
9999
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -109,7 +109,7 @@ jobs:
109109
git --no-pager diff go.mod go.sum
110110
git --no-pager diff --quiet go.mod go.sum
111111
- name: Upload coverage to Codecov
112-
uses: codecov/codecov-action@v1
112+
uses: codecov/codecov-action@v5
113113
with:
114114
#token: ${{ secrets.CODECOV_TOKEN }}
115115
file: ./coverage.txt
@@ -131,12 +131,12 @@ jobs:
131131
OS: ubuntu-latest
132132
GOLANG: ${{ matrix.golang }}
133133
steps:
134-
- uses: actions/checkout@v2
134+
- uses: actions/checkout@v4
135135
- name: Install Go
136-
uses: actions/setup-go@v2
136+
uses: actions/setup-go@v5
137137
with:
138138
go-version: ${{ matrix.golang }}
139-
- uses: actions/cache@v2
139+
- uses: actions/cache@v4
140140
with:
141141
path: ~/go/pkg/mod
142142
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -152,7 +152,7 @@ jobs:
152152
- name: Run tests on Unix-like operating systems
153153
run: make unittest
154154
- name: Upload coverage to Codecov
155-
uses: codecov/codecov-action@v1
155+
uses: codecov/codecov-action@v5
156156
with:
157157
#token: ${{ secrets.CODECOV_TOKEN }}
158158
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
15+
- uses: actions/checkout@v4
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
29+
- uses: actions/checkout@v4
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
@@ -18,19 +18,19 @@ jobs:
1818
-
1919
name: Run Semantic Release
2020
id: semantic
21-
uses: codfish/semantic-release-action@v1
21+
uses: codfish/semantic-release-action@v3
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
-
2525
name: Set up Go
2626
if: steps.semantic.outputs.new-release-published == 'true'
27-
uses: actions/setup-go@v2
27+
uses: actions/setup-go@v5
2828
with:
2929
go-version: 1.16.x
3030
-
3131
name: Cache Go modules
3232
if: steps.semantic.outputs.new-release-published == 'true'
33-
uses: actions/cache@v2
33+
uses: actions/cache@v4
3434
with:
3535
path: ~/go/pkg/mod
3636
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -39,7 +39,7 @@ jobs:
3939
-
4040
name: Run GoReleaser
4141
if: steps.semantic.outputs.new-release-published == 'true'
42-
uses: goreleaser/goreleaser-action@v2
42+
uses: goreleaser/goreleaser-action@v6
4343
with:
4444
version: latest
4545
args: release --rm-dist

go.mod

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

go.sum

Lines changed: 22 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.28.1",
66
"remark-cli": "9.0.0",

0 commit comments

Comments
 (0)