Browse Source

chore: synced local './' with remote 'docker/'

pull/87/head
dgibbs64 7 months ago
parent
commit
79f6cc5f47
  1. 4
      .devcontainer/devcontainer.json
  2. 5
      .github/workflows/action-dockerhub-description.yml

4
.devcontainer/devcontainer.json

@ -2,7 +2,9 @@
"name": "Docker Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"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/checkov:1": {},
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {},

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

@ -1,4 +1,5 @@
name: Update Docker Hub Description
on:
workflow_dispatch:
push:
@ -18,9 +19,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
uses: peter-evans/dockerhub-description@v5
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

Loading…
Cancel
Save