Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Bump starlette from 0.27.0 to 0.36.3 in /docker/api #932

Bump starlette from 0.27.0 to 0.36.3 in /docker/api

Bump starlette from 0.27.0 to 0.36.3 in /docker/api #932

Workflow file for this run

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- 'main'
- 'release'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Dockerfile
# @see https://github.com/brpaz/hadolint-action
uses: brpaz/hadolint-action@v1.5.0
with:
dockerfile: "docker/api/Dockerfile"
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v5.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
VALIDATE_CSS: false
VALIDATE_XML: false
VALIDATE_PERL: false
VALIDATE_RUBY: false
VALIDATE_COFFEE: false