From b92b1b378660d8c2dd46652d87439c94fd7f2a5c Mon Sep 17 00:00:00 2001 From: Tomasz Bielaszewski <122449408+tomaszbielaszewski-form3@users.noreply.github.com> Date: Fri, 1 Mar 2024 17:41:52 +0100 Subject: [PATCH 1/3] Update action.yml --- ci/github-actions/fuzz/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/github-actions/fuzz/action.yml b/ci/github-actions/fuzz/action.yml index 91fec1f..6731170 100644 --- a/ci/github-actions/fuzz/action.yml +++ b/ci/github-actions/fuzz/action.yml @@ -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 }} From 6791129d3dabdd740ede5fd347382f39bfa5eabc Mon Sep 17 00:00:00 2001 From: Tomasz Bielaszewski <122449408+tomaszbielaszewski-form3@users.noreply.github.com> Date: Fri, 1 Mar 2024 17:46:22 +0100 Subject: [PATCH 2/3] chore: removed typo --- ci/github-actions/fuzz/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/github-actions/fuzz/action.yml b/ci/github-actions/fuzz/action.yml index 6731170..5c1b79b 100644 --- a/ci/github-actions/fuzz/action.yml +++ b/ci/github-actions/fuzz/action.yml @@ -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@c7d193f32edcb7bfad88892161225aeda64e9392" # v4.0.0 + - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 if: 'failure()' with: name: ${{ inputs.artifact-name }} From a7f9425b60035b6458bbaeb045b1e8df22dab4aa Mon Sep 17 00:00:00 2001 From: Tomasz Bielaszewski Date: Fri, 1 Mar 2024 17:52:44 +0100 Subject: [PATCH 3/3] chore: updated docs before making a next release --- README.md | 4 ++-- ci/github-actions/fuzz/action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a21767..ea83153 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/ci/github-actions/fuzz/action.yml b/ci/github-actions/fuzz/action.yml index 5c1b79b..c359c16 100644 --- a/ci/github-actions/fuzz/action.yml +++ b/ci/github-actions/fuzz/action.yml @@ -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