mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-22 22:00:49 +01:00
Compare commits
No commits in common. "a4fa95f7caefd0db40a91bf4687c21afc8fe6061" and "441d163e38b69dd6adf3ec8c46c7500cd7219631" have entirely different histories.
a4fa95f7ca
...
441d163e38
4 changed files with 6 additions and 68 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -59,7 +59,7 @@ jobs:
|
||||||
go test -race -shuffle=on --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
go test -race -shuffle=on --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
||||||
- name: Upload coverage to Codecov
|
- name: Upload coverage to Codecov
|
||||||
if: success()
|
if: success()
|
||||||
uses: codecov/codecov-action@3b1354a6c45db9f1008891f4eafc1a7e94ce1d18 # v5.0.1
|
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
||||||
lint:
|
lint:
|
||||||
|
|
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
|
@ -54,7 +54,7 @@ jobs:
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
|
uses: github/codeql-action/init@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
|
@ -65,7 +65,7 @@ jobs:
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
|
uses: github/codeql-action/autobuild@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 https://git.io/JvXDl
|
# 📚 https://git.io/JvXDl
|
||||||
|
@ -79,4 +79,4 @@ jobs:
|
||||||
# make release
|
# make release
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
|
uses: github/codeql-action/analyze@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3
|
||||||
|
|
2
.github/workflows/scorecards.yml
vendored
2
.github/workflows/scorecards.yml
vendored
|
@ -75,6 +75,6 @@ jobs:
|
||||||
|
|
||||||
# Upload the results to GitHub's code scanning dashboard.
|
# Upload the results to GitHub's code scanning dashboard.
|
||||||
- name: "Upload to code-scanning"
|
- name: "Upload to code-scanning"
|
||||||
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
|
uses: github/codeql-action/upload-sarif@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3
|
||||||
with:
|
with:
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
|
|
|
@ -9,66 +9,4 @@ exclude-dirs = ["examples"]
|
||||||
|
|
||||||
[linters]
|
[linters]
|
||||||
enable = ["stylecheck", "whitespace", "containedctx", "contextcheck", "decorder",
|
enable = ["stylecheck", "whitespace", "containedctx", "contextcheck", "decorder",
|
||||||
"errname", "errorlint", "gofmt", "gofumpt", "gosec"]
|
"errname", "errorlint", "gofmt", "gofumpt"]
|
||||||
|
|
||||||
[issues]
|
|
||||||
|
|
||||||
## An overflow is impossible here
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "random.go"
|
|
||||||
text = "G115:"
|
|
||||||
|
|
||||||
## These are tests which intentionally do not need any TLS settings
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "client_test.go"
|
|
||||||
text = "G402:"
|
|
||||||
|
|
||||||
## These are tests which intentionally do not need any TLS settings
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/smtp_test.go"
|
|
||||||
text = "G402:"
|
|
||||||
|
|
||||||
## We do not dictate a TLS minimum version in the smtp package. go-mail
|
|
||||||
## itself does set sane defaults
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/smtp.go"
|
|
||||||
text = "G402:"
|
|
||||||
|
|
||||||
## The chance that we write +2 million tests is very low, I think we can
|
|
||||||
## ignore this for the time being
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "client_test.go"
|
|
||||||
text = "G109:"
|
|
||||||
|
|
||||||
## The chance that we write +2 million tests is very low, I think we can
|
|
||||||
## ignore this for the time being
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/smtp_test.go"
|
|
||||||
text = "G109:"
|
|
||||||
|
|
||||||
## We inform the user about the deprecated status of CRAM-MD5 and suggest
|
|
||||||
## to use SCRAM-SHA instead
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/auth_cram_md5.go"
|
|
||||||
text = "G501:"
|
|
||||||
|
|
||||||
## Yes, SHA1 is weak, but in the context of SCRAM it is still considered
|
|
||||||
## secure for specific applications. The user is information about this
|
|
||||||
## in the documentation
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/auth_scram.go"
|
|
||||||
text = "G505:"
|
|
||||||
|
|
||||||
## Test code for SCRAM-SHA1. Can be ignored.
|
|
||||||
[[issues.exclude-rules]]
|
|
||||||
linters = ["gosec"]
|
|
||||||
path = "smtp/smtp_test.go"
|
|
||||||
text = "G505:"
|
|
||||||
|
|
Loading…
Reference in a new issue