Skip to content

Commit

Permalink
update to fresh action
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey.shulika committed Feb 22, 2024
1 parent c2d6ac8 commit 4dac2d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
./check_licenses.sh java
line_count=$(wc -l < ./licenses_check/failed_licenses.csv)
if [[ $line_count -gt 1 ]]; then
if [[ $line_count -ge 1 ]]; then
echo "FAILED due to unknown/failed licenses found"
exit 1
else
Expand All @@ -54,7 +54,7 @@ jobs:

- name: Uploading results
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: licenses_check-${{ steps.meta.outputs.REPOSITORY_NAME }}-${{ needs.prebuild-job.outputs.version }}
path: ./licenses_check/
Expand Down

0 comments on commit 4dac2d6

Please sign in to comment.