Skip to content

Commit 2fcb88b

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents a8d650f + 66832ae commit 2fcb88b

File tree

9 files changed

+18
-15
lines changed

9 files changed

+18
-15
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"name": "Docker Dev Container",
33
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
44
"features": {
5-
"ghcr.io/devcontainers-community/npm-features/prettier:1": {},
5+
"ghcr.io/devcontainers-community/npm-features/prettier:1": {
6+
"plugins": "prettier-plugin-sh prettier-plugin-jinja-template"
7+
},
68
"ghcr.io/devcontainers-extra/features/actionlint:1": {},
79
"ghcr.io/devcontainers-extra/features/checkov:1": {},
810
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
version: 2
32
updates:
43
- package-ecosystem: "github-actions"

.github/workflows/action-docker-publish.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,3 @@ jobs:
168168
package-type: container
169169
min-versions-to-keep: 1
170170
delete-only-untagged-versions: true
171-
172-
workflow-keepalive:
173-
if: github.event_name == 'schedule'
174-
runs-on: ubuntu-latest
175-
permissions:
176-
actions: write
177-
steps:
178-
- uses: liskin/gh-workflow-keepalive@v1

.github/workflows/action-dockerhub-description.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Update Docker Hub Description
2+
23
on:
34
workflow_dispatch:
45
push:
@@ -18,6 +19,8 @@ jobs:
1819
steps:
1920
- name: Checkout
2021
uses: actions/checkout@v5
22+
with:
23+
persist-credentials: false
2124

2225
- name: Docker Hub Description
2326
uses: peter-evans/dockerhub-description@v4

.github/workflows/action-prettier.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Prettier
2+
23
on:
34
workflow_dispatch:
45
push:
@@ -19,6 +20,8 @@ jobs:
1920
steps:
2021
- name: Checkout
2122
uses: actions/checkout@v5
23+
with:
24+
persist-credentials: false
2225

2326
- name: Install Prettier and plugins
2427
run: |

.github/workflows/action-super-linter.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: Super Linter
32

43
on:
@@ -31,6 +30,7 @@ jobs:
3130
# super-linter needs the full git history to get the
3231
# list of files that changed across commits
3332
fetch-depth: 0
33+
persist-credentials: false
3434

3535
- name: Install Prettier plugins (for summary formatting)
3636
run: |
@@ -41,8 +41,11 @@ jobs:
4141
env:
4242
# To report GitHub Actions status checks
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
4445
VALIDATE_JSCPD: false
45-
VALIDATE_SHELL_SHFMT: false
46-
VALIDATE_YAML_PRETTIER: false
4746
VALIDATE_JSON_PRETTIER: false
4847
VALIDATE_MARKDOWN_PRETTIER: false
48+
VALIDATE_NATURAL_LANGUAGE: false
49+
VALIDATE_SHELL_SHFMT: false
50+
VALIDATE_TERRAFORM_TERRASCAN: false
51+
VALIDATE_YAML_PRETTIER: false

.github/workflows/action-update-copyright-years-in-license-file.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Update copyright year(s) in license file
2+
23
on:
34
workflow_dispatch:
45
schedule:
@@ -15,6 +16,7 @@ jobs:
1516
uses: actions/checkout@v5
1617
with:
1718
fetch-depth: 0
19+
persist-credentials: false
1820
- name: Action Update License Year
1921
uses: FantasticFiasco/action-update-license-year@v3
2022
with:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Visual Studio Code
22
.vscode/*
3-
!.vscode/settings.json
43
!.vscode/tasks.json
54
!.vscode/launch.json
65
!.vscode/extensions.json

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright (c) 2022-2025 Daniel Gibbs
3+
Copyright (c) 2025 Daniel Gibbs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)