This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
Update action step #1
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# Credo is a static code analysis tool for the Elixir language with a focus on teaching and code consistency. | |
# https://github.com/rrrene/credo | |
# | |
# To use this workflow, you must have GitHub Advanced Security (GHAS) enabled for your repository. | |
# | |
# Instructions: | |
# 1. Add :credo as a dependency to your project's mix.exs with version ~> 1.7.0-rc.1 - https://github.com/rrrene/credo#installation-and-usage | |
# 2. Follow the annotated workflow below and make any necessary modifications then save the workflow to your repository | |
# and review the "Security" tab once the action has run. | |
name: Code Scanning w/ SARIF output | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
security-scan: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 26.2 | |
elixir-version: 1.16.2 | |
- run: mix deps.get | |
- run: mix deps.compile | |
- run: mix compile | |
- run: mix credo --format=sarif --mute-exit-status > credo_output.sarif | |
- name: Upload SARIF | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: credo_output.sarif |