Compare commits
2 Commits
1a67d8b0e1
...
0fbd7641c0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0fbd7641c0 | ||
|
|
60a0e82587 |
@@ -41,6 +41,7 @@ A `### Breaking` section is used in addition to Keep a Changelog's standard sect
|
|||||||
- Restored explicit gosec caching by storing a pinned `v2.22.4` binary under `${{ runner.temp }}/gosec-bin` with `actions/cache@v4`, so CI keeps fast security scans while still using the Go 1.26 toolchain from `setup-go`.
|
- Restored explicit gosec caching by storing a pinned `v2.22.4` binary under `${{ runner.temp }}/gosec-bin` with `actions/cache@v4`, so CI keeps fast security scans while still using the Go 1.26 toolchain from `setup-go`.
|
||||||
- Replaced `securego/gosec` composite action with a direct `go install github.com/securego/gosec/v2/cmd/gosec@v2.22.4 && gosec ./...` run step so gosec uses the Go 1.26 toolchain installed by `setup-go` rather than the action's bundled Go 1.24 binary which ignores `GOTOOLCHAIN=auto`.
|
- Replaced `securego/gosec` composite action with a direct `go install github.com/securego/gosec/v2/cmd/gosec@v2.22.4 && gosec ./...` run step so gosec uses the Go 1.26 toolchain installed by `setup-go` rather than the action's bundled Go 1.24 binary which ignores `GOTOOLCHAIN=auto`.
|
||||||
- Fixed nested local composite-action references to use repository-local `./run-vociferate` paths so strict runners do not misparse parent-directory (`../`) action references as malformed remote coordinates.
|
- Fixed nested local composite-action references to use repository-local `./run-vociferate` paths so strict runners do not misparse parent-directory (`../`) action references as malformed remote coordinates.
|
||||||
|
- Fixed `run-vociferate` nested action calls to use explicit repo-root paths (`./run-vociferate/binary` and `./run-vociferate/code`) because strict runners resolve local action paths from repository root rather than from the current composite action directory.
|
||||||
|
|
||||||
## [1.0.2] - 2026-03-21
|
## [1.0.2] - 2026-03-21
|
||||||
|
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ runs:
|
|||||||
- name: Run binary
|
- name: Run binary
|
||||||
id: run-binary
|
id: run-binary
|
||||||
if: steps.resolve-runtime.outputs.use_binary == 'true'
|
if: steps.resolve-runtime.outputs.use_binary == 'true'
|
||||||
uses: ./binary
|
uses: ./run-vociferate/binary
|
||||||
with:
|
with:
|
||||||
root: ${{ inputs.root }}
|
root: ${{ inputs.root }}
|
||||||
version-file: ${{ inputs.version-file }}
|
version-file: ${{ inputs.version-file }}
|
||||||
@@ -81,7 +81,7 @@ runs:
|
|||||||
- name: Run source
|
- name: Run source
|
||||||
id: run-code
|
id: run-code
|
||||||
if: steps.resolve-runtime.outputs.use_binary != 'true'
|
if: steps.resolve-runtime.outputs.use_binary != 'true'
|
||||||
uses: ./code
|
uses: ./run-vociferate/code
|
||||||
with:
|
with:
|
||||||
root: ${{ inputs.root }}
|
root: ${{ inputs.root }}
|
||||||
version-file: ${{ inputs.version-file }}
|
version-file: ${{ inputs.version-file }}
|
||||||
|
|||||||
Reference in New Issue
Block a user