Skip to content

Commit

Permalink
Bump andstor/file-existence-action from 2 to 3 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Feb 13, 2024
1 parent 3c21f6d commit f55d707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ runs:
- name: Check if .exclude-${{ steps.vars.outputs.distribution }} is present in ${{ steps.vars.outputs.dockerfile_path }} directory
id: check_exclude_file
# https://github.com/marketplace/actions/file-existence
uses: andstor/file-existence-action@v2
uses: andstor/file-existence-action@v3
with:
files: "${{ steps.vars.outputs.dockerfile_path }}/.exclude-${{ steps.vars.outputs.distribution }}"

- name: Check if ${{ inputs.dockerfile }} is present
if: steps.check_exclude_file.outputs.files_exists == 'false'
id: check_dockerfile_file
# https://github.com/marketplace/actions/file-existence
uses: andstor/file-existence-action@v2
uses: andstor/file-existence-action@v3
with:
files: "${{ inputs.dockerfile }}"
fail: true # fails the Action if Dockerfile is missing
Expand Down

0 comments on commit f55d707

Please sign in to comment.