chore(deps): pin timoa/app-stores-prometheus-exporter docker tag to 47fa8b8 #560
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: Code Review | |
on: [pull_request] | |
jobs: | |
# -- ESLINT ----------------------------------------------------------------- | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden the GitHub Actions Runner | |
uses: step-security/harden-runner@4a1e83c9ef6b0e39b16f17b2734e08cdfbeea46c | |
with: | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
github.com:443 | |
objects.githubusercontent.com:443 | |
raw.githubusercontent.com:443 | |
registry.npmjs.org:443 | |
snyk.io:443 | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Run ESLint | |
uses: reviewdog/action-eslint@f2ee6727e05e6f0e46ea1d06a16f6685d3d7fb37 # v1.19.2 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# -- DOCKER ----------------------------------------------------------------- | |
hadolint: | |
name: Hadolint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden the GitHub Actions Runner | |
uses: step-security/harden-runner@4a1e83c9ef6b0e39b16f17b2734e08cdfbeea46c | |
with: | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
github.com:443 | |
objects.githubusercontent.com:443 | |
raw.githubusercontent.com:443 | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Run hadolint | |
uses: reviewdog/action-hadolint@fcee1ac512e8fb0bac9e3ac793f141d9142bb39e # v1.35.1 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} |