-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[StepSecurity] ci: Harden GitHub Actions (#885)
Signed-off-by: StepSecurity Bot <[email protected]>
- Loading branch information
1 parent
67de577
commit 6b6ffc4
Showing
4 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,35 +30,35 @@ jobs: | |
static: true | ||
runs-on: ${{ matrix.os.runner }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | ||
with: | ||
go-version-file: go.mod | ||
- uses: open-policy-agent/setup-opa@v2 | ||
- uses: open-policy-agent/setup-opa@34a30e8a924d1b03ce2cf7abe97250bbb1f332b5 # v2.2.0 | ||
with: | ||
version: edge | ||
static: ${{ matrix.os.static }} | ||
- run: npm install -g markdownlint-cli | ||
- name: Restore rq cache | ||
id: cache-rq | ||
uses: actions/cache@v4 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: ~/go/bin/rq | ||
key: ${{ runner.os }}-${{ runner.arch }}-go-rq-${{ env.RQ_VERSION }} | ||
- run: go install git.sr.ht/~charles/rq/cmd/rq@${{ env.RQ_VERSION }} | ||
if: steps.cache-rq.outputs.cache-hit != 'true' | ||
- name: Cache rq binary | ||
if: steps.cache-rq.outputs.cache-hit != 'true' | ||
uses: actions/cache@v4 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | ||
path: ~/go/bin/rq | ||
key: ${{ runner.os }}-${{ runner.arch }}-go-rq-${{ env.RQ_VERSION }} | ||
- run: build/do.rq pull_request | ||
- uses: golangci/[email protected] | ||
- uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1 | ||
if: matrix.os.name == 'linux' | ||
with: | ||
version: v1.59.0 | ||
- uses: actions/upload-artifact@v4 | ||
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | ||
with: | ||
name: regal-${{ matrix.os.name }} | ||
path: regal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters