Update for version 10.6.4 of Nessus #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update README in Docker Hub | |
run-name: ${{ github.event.inputs.manual_commit_message }} | |
on: | |
push: | |
paths: | |
- 'README.md' | |
workflow_dispatch: | |
inputs: | |
manual_commit_message: | |
description: "Insert manual commit message" | |
type: string | |
required: true | |
jobs: | |
Update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker Hub Description | |
uses: peter-evans/dockerhub-description@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: ciromota/nessus-scanner | |
readme-filepath: ./README.md | |
short-description: ${{ github.event.repository.description }} | |