Skip to content

Commit

Permalink
Bump actionlint from 1.6.27 to 1.7.0 (#1552)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Cornelissen <[email protected]>
  • Loading branch information
ec-automation-bot[bot] and ericcornelissen authored May 9, 2024
1 parent 338703f commit 7289b13
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/reusable-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,20 @@ jobs:
TARGET: ${{ matrix.target }}
run: |
timeout "${DURATION}s" npm run fuzz "${TARGET}"
export EXIT_CODE=$?
if [[ ($EXIT_CODE == 124) ]]; then
echo 'fuzz-error=false' >> $GITHUB_OUTPUT
echo 'script-error=false' >> $GITHUB_OUTPUT
elif [[ ($EXIT_CODE == 1) ]]; then
echo 'fuzz-error=true' >> $GITHUB_OUTPUT
echo 'script-error=false' >> $GITHUB_OUTPUT
else
echo 'fuzz-error=false' >> $GITHUB_OUTPUT
echo 'script-error=true' >> $GITHUB_OUTPUT
echo "exit-code=$EXIT_CODE" >> $GITHUB_OUTPUT
fi
export EXIT_CODE="$?"
{
if [[ ("$EXIT_CODE" == 124) ]]; then
echo 'fuzz-error=false'
echo 'script-error=false'
elif [[ ("$EXIT_CODE" == 1) ]]; then
echo 'fuzz-error=true'
echo 'script-error=false'
else
echo 'fuzz-error=false'
echo 'script-error=true'
echo "exit-code=$EXIT_CODE"
fi
} >> "$GITHUB_OUTPUT"
- name: Check for unexpected error
if: ${{ steps.fuzz.outputs.script-error == 'true' }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# - asdf: https://asdf-vm.com/
# - rtx: https://github.com/jdxcode/rtx

actionlint 1.6.27
actionlint 1.7.0
shellcheck 0.10.0

0 comments on commit 7289b13

Please sign in to comment.