Day 13: Additional Secure Coding Practices

This commit is contained in:
Prateek Jain 2023-01-10 20:13:04 +05:30
parent 93bc495479
commit e781b5ac97

View File

@ -70,10 +70,10 @@ jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: hadolint/hadolint-action@v2.1.0 - uses: hadolint/hadolint-action@v2.1.0
with: with:
dockerfile: Dockerfile dockerfile: Dockerfile
``` ```
1. This workflow will run on every push to the "main" branch, and will run the hadolint command on the "Dockerfile" file. 1. This workflow will run on every push to the "main" branch, and will run the hadolint command on the "Dockerfile" file.