Skip to content

chore(deps): update actions/checkout action to v3.6.0 #1616

chore(deps): update actions/checkout action to v3.6.0

chore(deps): update actions/checkout action to v3.6.0 #1616

Workflow file for this run

name: Code Review
on: [pull_request]
jobs:
# -- ESLINT -----------------------------------------------------------------
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Harden GitHub Actions Runner
uses: step-security/harden-runner@2579b52abd08b0a4c3ad0e4476ddb0f2036e3b67
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 GitHub Actions Runner
uses: step-security/harden-runner@2579b52abd08b0a4c3ad0e4476ddb0f2036e3b67
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@7bd0800b7ce35c6d644cde762174e69f18896973 # v1.35.0
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}