Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- cron: "35 23 * * 0"

env:
CGO_ENABLED: "1"
CODEQL_EXTRACTOR_GO_BUILD_TRACING: "on"
YARA_X_RELEASE: "1.16.0"

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/fuzz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ on:
- "180m"

env:
CGO_ENABLED: "1"
GO_RELEASE: "go-1.26"
YARA_X_RELEASE: "1.16.0"

Expand Down Expand Up @@ -125,7 +126,7 @@ jobs:
- name: Install dependencies
run: |
apk update
apk add curl findutils git gnutar "${GO_RELEASE}" nodejs upx xz "yara-x~${YARA_X_RELEASE}"
apk add curl findutils gcc git gnutar "${GO_RELEASE}" make nodejs pkgconf upx xz "yara-x~${YARA_X_RELEASE}"

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/go-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- "main"

env:
CGO_ENABLED: "1"
GO_RELEASE: "go-1.26"
YARA_X_RELEASE: "1.16.0"

Expand Down Expand Up @@ -41,7 +42,7 @@ jobs:
- name: Install dependencies
run: |
apk update
apk add curl findutils git gnutar "${GO_RELEASE}" nodejs upx xz "yara-x~${YARA_X_RELEASE}"
apk add curl findutils gcc git gnutar "${GO_RELEASE}" make nodejs pkgconf upx xz "yara-x~${YARA_X_RELEASE}"

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -92,7 +93,7 @@ jobs:
- name: Install dependencies
run: |
apk update
apk add curl findutils git gnutar "${GO_RELEASE}" nodejs upx xz "yara-x~${YARA_X_RELEASE}"
apk add curl findutils gcc git gnutar "${GO_RELEASE}" make nodejs pkgconf upx xz "yara-x~${YARA_X_RELEASE}"

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: Code Style

env:
CGO_ENABLED: "1"
GO_RELEASE: "go-1.26"
YARA_X_RELEASE: "1.16.0"

Expand Down Expand Up @@ -188,7 +189,7 @@ jobs:
- name: Install dependencies
run: |
apk update
apk add curl findutils git "${GO_RELEASE}" nodejs "yara-x~${YARA_X_RELEASE}"
apk add curl findutils gcc git "${GO_RELEASE}" make nodejs pkgconf "yara-x~${YARA_X_RELEASE}"

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/third-party.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- cron: "0 */12 * * *"

env:
CGO_ENABLED: "1"
GO_RELEASE: "go-1.26"
YARA_X_RELEASE: "1.16.0"

Expand Down Expand Up @@ -38,9 +39,9 @@
pull-requests: write
steps:
- name: Install dependencies
run: |

Check warning on line 42 in .github/workflows/third-party.yaml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC1083:warning:2:62: This } is literal. Check expression (missing ;/\n?) or quote it [shellcheck] Raw Output: w:.github/workflows/third-party.yaml:42:9: shellcheck reported issue in this script: SC1083:warning:2:62: This } is literal. Check expression (missing ;/\n?) or quote it [shellcheck]
apk update
apk add bash curl findutils gh git gnutar "${GO_RELEASE}" nodejs perl upx xz "yara-x~${YARA_X_RELEASE}"
apk add bash curl findutils gcc gh git gnutar "${GO_RELEASE}"} make nodejs perl pkgconf upx xz "yara-x~${YARA_X_RELEASE}"
- uses: chainguard-dev/actions/setup-gitsign@c69a264ec2a5934c3186c618f368fc1c86f16cff # main
- name: Set up Octo-STS
uses: octo-sts/action@f603d3be9d8dd9871a265776e625a27b00effe05 # v1.1.1
Expand Down