Add more options to image resizing #2987
Workflow file for this run
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 checks out code, performs a Codacy security scan | |
# and integrates the results with the | |
# GitHub Advanced Security code scanning feature. For more information on | |
# the Codacy security scan action usage and parameters, see | |
# https://github.com/codacy/codacy-analysis-cli-action. | |
# For more information on Codacy Analysis CLI in general, see | |
# https://github.com/codacy/codacy-analysis-cli. | |
name: Codacy Security Scan | |
on: | |
push: | |
branches: [ master, 1.*.*, 2.*.* ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
schedule: | |
- cron: '32 4 * * 0' | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
codacy-security-scan: | |
name: Codacy Security Scan | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository to the GitHub Actions runner | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# Execute Codacy Analysis CLI | |
- name: Run Codacy Analysis CLI | |
uses: codacy/codacy-analysis-cli-action@v4 |