Browse Source

Merge 941109b9a5 into 4bdc212a7e

pull/86/merge
Daniel Gibbs 3 weeks ago
committed by GitHub
parent
commit
4fcaae0a8f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .devcontainer/devcontainer.json
  2. 1
      .github/dependabot.yml
  3. 3
      .github/workflows/action-dockerhub-description.yml
  4. 1
      .github/workflows/action-prettier.yml
  5. 2
      .github/workflows/action-super-linter.yml
  6. 1
      .github/workflows/action-update-copyright-years-in-license-file.yml

4
.devcontainer/devcontainer.json

@ -2,7 +2,9 @@
"name": "Docker Dev Container", "name": "Docker Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": { "features": {
"ghcr.io/devcontainers-community/npm-features/prettier:1": {}, "ghcr.io/devcontainers-community/npm-features/prettier:1": {
"plugins": "prettier-plugin-sh prettier-plugin-jinja-template"
},
"ghcr.io/devcontainers-extra/features/actionlint:1": {}, "ghcr.io/devcontainers-extra/features/actionlint:1": {},
"ghcr.io/devcontainers-extra/features/checkov:1": {}, "ghcr.io/devcontainers-extra/features/checkov:1": {},
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {}, "ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},

1
.github/dependabot.yml

@ -1,4 +1,3 @@
---
version: 2 version: 2
updates: updates:
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"

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

@ -1,4 +1,5 @@
name: Update Docker Hub Description name: Update Docker Hub Description
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@ -18,6 +19,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5
with:
persist-credentials: false
- name: Docker Hub Description - name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4 uses: peter-evans/dockerhub-description@v4

1
.github/workflows/action-prettier.yml

@ -1,4 +1,5 @@
name: Prettier name: Prettier
on: on:
workflow_dispatch: workflow_dispatch:
push: push:

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

@ -1,4 +1,3 @@
---
name: Super Linter name: Super Linter
on: on:
@ -42,6 +41,7 @@ jobs:
env: env:
# To report GitHub Actions status checks # To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_JSCPD: false VALIDATE_JSCPD: false
VALIDATE_JSON_PRETTIER: false VALIDATE_JSON_PRETTIER: false
VALIDATE_MARKDOWN_PRETTIER: false VALIDATE_MARKDOWN_PRETTIER: false

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

@ -1,4 +1,5 @@
name: Update copyright year(s) in license file name: Update copyright year(s) in license file
on: on:
workflow_dispatch: workflow_dispatch:
schedule: schedule:

Loading…
Cancel
Save