Skip to content

Commit bff305b

Browse files
authored
chore(deps): update hub docker link (#275)
* linting * exclude hub.docker link check
1 parent f692d5c commit bff305b

File tree

10 files changed

+40
-3
lines changed

10 files changed

+40
-3
lines changed

.checkov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
quiet: true
23
skip-check:
34
- CKV_DOCKER_3 # lsio images run containers as non-root by default

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Based on the issue template
23
name: Bug report
34
description: Create a report to help us improve

.github/ISSUE_TEMPLATE/issue.feature.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Based on the issue template
23
name: Feature request
34
description: Suggest an idea for this project

.github/workflows/deploy-docker-image.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: build-and-push-docker-image
23

34
permissions: read-all

.github/workflows/greetings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Greetings
23

34
permissions: read-all

.github/workflows/lint-pr-title.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "Lint PR Title"
23

34
permissions: read-all

.markdown-link-check.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^https://hub.docker.com*"
5+
}
6+
],
7+
8+
"retryOn429": true,
9+
"retryCount": 5,
10+
"aliveStatusCodes": [200, 203]
11+
}

.mega-linter.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
# Configuration file for MegaLinter
22
# See all available variables at https://megalinter.github.io/configuration/ and in linters documentation
3-
3+
---
44
DISABLE:
55
- COPYPASTE
66
- SPELL
77

88
DISABLE_LINTERS:
9-
- REPOSITORY_DEVSKIM # Disabled as currently not working
9+
- REPOSITORY_DEVSKIM # Disabled as currently not working with .net 9
1010
- REPOSITORY_KICS # TODO: Fix KICS linter issues and re-enable
1111

1212
DOCKERFILE_HADOLINT_CONFIG_FILE: .hadolint.yml
1313
ERROR_ON_MISSING_EXEC_BIT: true
1414
FORMATTERS_DISABLE_ERRORS: false
1515
IGNORE_GENERATED_FILES: true
16+
JSON_JSONLINT_ARGUMENTS: "-B"
1617
MARKDOWN_MARKDOWNLINT_DISABLE_ERRORS: false
1718
PRINT_ALL_FILES: false
1819
REPOSITORY_TRUFFLEHOG_ARGUMENTS: --exclude-paths=.trufflehogignore.txt
1920
SHOW_ELAPSED_TIME: true
21+
VALIDATE_ALL_CODEBASE: true
22+
YAML_YAMLLINT_ARGUMENTS: "--strict"

.yamllint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Configuration file for yamllint.
2+
# Documentation: https://yamllint.readthedocs.io/en/stable/configuration.html
3+
---
4+
extends: default
5+
6+
rules:
7+
comments:
8+
min-spaces-from-content: 1
9+
line-length:
10+
max: 205
11+
truthy:
12+
# uses the key 'on' without quotes which fails the truthy check
13+
ignore: |
14+
.github/workflows/deploy-docker-image.yml
15+
.github/workflows/greetings.yml
16+
.github/workflows/lint-pr-title.yml
17+
.github/workflows/mega-linter.yml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To automatically solve the CAPTCHA, you will need an [AntiCaptcha](https://anti-
4343

4444
You can mount two volumes to persist the Packt credentials and store the downloaded books in a directory on your host system. The `/config` directory will store your Packt credentials, and the `/data` directory will store the downloaded books. You can change the paths of the host directories by modifying the values after the `-v` flag.
4545

46-
If you would prefer to use an alternative to ghcr.io, you can use the image hosted on [Docker Hub](https://hub.docker.com/repository/docker/ghostwriters/docker-packt-cli) `ghostwriters/docker-packt-cli:latest`,
46+
If you would prefer to use an alternative to ghcr.io, you can use the image hosted on [Docker Hub](https://hub.docker.com/repository/docker/ghostwriters/docker-packt-cli/general) `ghostwriters/docker-packt-cli:latest`,
4747

4848
## GitHub Actions Used
4949

0 commit comments

Comments
 (0)