Skip to content

Commit a785600

Browse files
fix(deps): update all
1 parent 9c847bc commit a785600

File tree

9 files changed

+40
-40
lines changed

9 files changed

+40
-40
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@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

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@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@v3.1.0
33+
uses: docker/build-push-action@v6.18.0
3434
with:
3535
repository: berty-discord-webhook
3636

3737
- name: Push to GitHub Packages
38-
uses: docker/build-push-action@v3.1.0
38+
uses: docker/build-push-action@v6.18.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@v3.1.0
69+
uses: docker/build-push-action@v6.18.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@v3
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@v3
50+
uses: actions/checkout@v4
5151
- name: Set up Go
52-
uses: actions/setup-go@v3
52+
uses: actions/setup-go@v5
5353
with:
5454
go-version: ${{ matrix.golang }}
5555
- name: Cache Go modules
56-
uses: actions/cache@v3.0.7
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@v3.0.0
62+
uses: goreleaser/goreleaser-action@v6.3.0
6363
with:
6464
version: latest
6565
args: release --rm-dist --snapshot --skip-publish
@@ -71,9 +71,9 @@ jobs:
7171
matrix:
7272
golangci_lint: [v1.38]
7373
steps:
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v4
7575
- name: golangci-lint
76-
uses: golangci/golangci-lint-action@v3.2.0
76+
uses: golangci/golangci-lint-action@v8.0.0
7777
with:
7878
version: ${{ matrix.golangci_lint }}
7979
#github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -88,9 +88,9 @@ jobs:
8888
golang:
8989
- 1.18.x
9090
steps:
91-
- uses: actions/checkout@v3
91+
- uses: actions/checkout@v4
9292
- name: Install Go
93-
uses: actions/setup-go@v3
93+
uses: actions/setup-go@v5
9494
with:
9595
go-version: ${{ matrix.golang }}
9696
- name: Run tests on Windows
@@ -107,12 +107,12 @@ jobs:
107107
OS: macos-latest
108108
GOLANG: ${{ matrix.golang }}
109109
steps:
110-
- uses: actions/checkout@v3
110+
- uses: actions/checkout@v4
111111
- name: Install Go
112-
uses: actions/setup-go@v3
112+
uses: actions/setup-go@v5
113113
with:
114114
go-version: ${{ matrix.golang }}
115-
- uses: actions/cache@v3.0.7
115+
- uses: actions/cache@v4.2.3
116116
with:
117117
path: ~/go/pkg/mod
118118
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -128,7 +128,7 @@ jobs:
128128
git --no-pager diff go.mod go.sum
129129
git --no-pager diff --quiet go.mod go.sum
130130
- name: Upload coverage to Codecov
131-
uses: codecov/codecov-action@v3.1.0
131+
uses: codecov/codecov-action@v5.4.3
132132
with:
133133
#token: ${{ secrets.CODECOV_TOKEN }}
134134
file: ./coverage.txt
@@ -151,12 +151,12 @@ jobs:
151151
OS: ubuntu-latest
152152
GOLANG: ${{ matrix.golang }}
153153
steps:
154-
- uses: actions/checkout@v3
154+
- uses: actions/checkout@v4
155155
- name: Install Go
156-
uses: actions/setup-go@v3
156+
uses: actions/setup-go@v5
157157
with:
158158
go-version: ${{ matrix.golang }}
159-
- uses: actions/cache@v3.0.7
159+
- uses: actions/cache@v4.2.3
160160
with:
161161
path: ~/go/pkg/mod
162162
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
@@ -172,7 +172,7 @@ jobs:
172172
- name: Run tests on Unix-like operating systems
173173
run: make unittest
174174
- name: Upload coverage to Codecov
175-
uses: codecov/codecov-action@v3.1.0
175+
uses: codecov/codecov-action@v5.4.3
176176
with:
177177
#token: ${{ secrets.CODECOV_TOKEN }}
178178
file: ./coverage.txt

.github/workflows/label-sponsors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
name: is-sponsor-label
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: JasonEtco/is-sponsor-label-action@v1.2.0
12+
- uses: JasonEtco/is-sponsor-label-action@v2.0.0
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.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@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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
-
2020
name: Unshallow
2121
run: git fetch --prune --unshallow
@@ -25,27 +25,27 @@ 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@v3
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@v3.0.7
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') }}
4444
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
4545
-
4646
name: Run GoReleaser
4747
if: steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
48-
uses: goreleaser/goreleaser-action@v3.0.0
48+
uses: goreleaser/goreleaser-action@v6.3.0
4949
with:
5050
version: latest
5151
args: release --rm-dist

.github/workflows/scorecards.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout code"
25-
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.0
25+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
with:
2727
persist-credentials: false
2828

2929
- name: "Run analysis"
3030
env:
3131
SCORECARD_READ_TOKEN: ${{ secrets.SCORECARD_READ_TOKEN }}
3232
if: env.SCORECARD_READ_TOKEN != null
33-
uses: ossf/scorecard-action@68bf5b3327e4fd443d2add8ab122280547b4a16d # v1.0.4
33+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
3434
with:
3535
results_file: results.sarif
3636
results_format: sarif
@@ -59,6 +59,6 @@ jobs:
5959
env:
6060
SCORECARD_READ_TOKEN: ${{ secrets.SCORECARD_READ_TOKEN }}
6161
if: env.SCORECARD_READ_TOKEN != null
62-
uses: github/codeql-action/upload-sarif@v2 # v1.0.26
62+
uses: github/codeql-action/upload-sarif@v3
6363
with:
6464
sarif_file: results.sarif

.github/workflows/semgrep.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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)