Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #12
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
name: Check that we dont have extended ascii or utf boms in our files | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- prime | |
pull_request: | |
branches: | |
- master | |
- main | |
- prime | |
jobs: | |
extendedAsciiAndBom: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: check for files known to cause problems | |
run: find . -type f | grep -vP "^./.git" | xargs file | grep -iP "bom|extended|iso" | |
- name: | |
if: failure() | |
uses: unsplash/comment-on-pr@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
msg: "Please note that this push or pull request seems to contain files other than ascii or utf8 without bom." |