Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates upload-artifact to v4 #6

Merged
merged 3 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ Here are the Github Action properties:
```yaml
inputs:
version:
description: "Version of go-ci-fuzz, e.g. latest or 0.1.2"
description: "Version of go-ci-fuzz, e.g. latest or 0.1.3"
required: false
default: "0.1.2"
default: "0.1.3"
source-path:
description: "Path to the project's source code, current directory by default."
required: false
Expand Down
6 changes: 3 additions & 3 deletions ci/github-actions/fuzz/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "fuzz"
description: "Runs fuzzing targets using go-ci-fuzz"
inputs:
version:
description: "Version of go-ci-fuzz, e.g. latest or 0.1.2"
description: "Version of go-ci-fuzz, e.g. latest or 0.1.3"
required: false
default: "0.1.2"
default: "0.1.3"
source-path:
description: "Path to the project's source code, current directory by default."
required: false
Expand Down Expand Up @@ -87,7 +87,7 @@ runs:
mkdir -p $TEMP_DIR
echo "FAILING_INPUTS_DIR=${TEMP_DIR}" >> "$GITHUB_OUTPUT"
${RUNNER_TEMP}/${{ steps.archive-info.outputs.EXE_NAME }} fuzz ./... --fuzz-time "${{ inputs.fuzz-time }}" --fail-fast="${{ inputs.fail-fast }}" --out="${TEMP_DIR}/"
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
if: 'failure()'
with:
name: ${{ inputs.artifact-name }}
Expand Down
Loading