We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddab6f9 commit c1e1df8Copy full SHA for c1e1df8
action.yaml
@@ -44,16 +44,13 @@ outputs:
44
description: 'If a comment was posted, a link to this comment'
45
value: ${{ steps.run-analysis.outputs.comment-posted }}
46
runs:
47
- using: 'composite'
+ using: 'docker'
48
+ image: 'docker://lacework/codesec:stable'
49
steps:
- - if: runner.os == 'Linux'
50
+ - run: find . -type f -print
51
+ - name: Set start time
52
shell: bash
53
run: echo "LACEWORK_START_TIME=$(date --rfc-3339=seconds)" >> $GITHUB_ENV
- - if: runner.os == 'macOS'
- shell: bash
54
- run: |
55
- brew install coreutils
56
- echo "LACEWORK_START_TIME=$(gdate --rfc-3339=seconds)" >> $GITHUB_ENV
57
- id: init
58
59
env:
0 commit comments