Skip to content

Commit

Permalink
Merge branch 'release/v0.19.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
targodan committed Jun 7, 2023
2 parents eb2fa6d + 220b70b commit 5e7d582
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
yara-version: [ "v4.2.3" ]
yara-version: [ "v4.3.1" ]
steps:
- uses: actions/checkout@v3

Expand All @@ -28,8 +28,8 @@ jobs:
needs: setup
strategy:
matrix:
go-version: [ "1.18", "1.19" ]
yara-version: [ "v4.2.3" ]
go-version: [ "1.18", "1.19", "1.20" ]
yara-version: [ "v4.3.1" ]
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -70,8 +70,8 @@ jobs:
needs: setup
strategy:
matrix:
go-version: [ "1.18", "1.19" ]
yara-version: [ "v4.2.3" ]
go-version: [ "1.18", "1.19", "1.20" ]
yara-version: [ "v4.3.1" ]
openssl-version: [ "OpenSSL_1_1_1-stable" ]
steps:
- uses: actions/checkout@v3
Expand All @@ -95,7 +95,7 @@ jobs:
working-directory: cmd/yapscan
- name: Upload linux build
uses: actions/upload-artifact@v3
if: ${{ matrix.go-version == '1.19' }}
if: ${{ matrix.go-version == '1.20' }}
with:
name: yapscan-linux
path: cicd/build/yapscan
Expand All @@ -104,7 +104,7 @@ jobs:
uses: ./.github/actions/gather-linux-deps
- name: Upload linux deps
uses: actions/upload-artifact@v3
if: ${{ matrix.go-version == '1.19' }}
if: ${{ matrix.go-version == '1.20' }}
with:
name: deps-linux
path: |
Expand All @@ -118,8 +118,8 @@ jobs:
if: github.event_name != 'pull_request' # pull_request events don't have access to secrets
strategy:
matrix:
go-version: [ "1.18", "1.19" ]
yara-version: [ "v4.2.3" ]
go-version: [ "1.18", "1.19", "1.20" ]
yara-version: [ "v4.3.1" ]
openssl-version: [ "OpenSSL_1_1_1-stable" ]
steps:
- uses: actions/checkout@v3
Expand All @@ -141,7 +141,7 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Upload windows build
uses: actions/upload-artifact@v3
if: ${{ matrix.go-version == '1.19' }}
if: ${{ matrix.go-version == '1.20' }}
with:
name: yapscan-windows
path: |
Expand Down
2 changes: 1 addition & 1 deletion cicd/yaraVersion.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

DEFAULT_VERSION=v4.2.3
DEFAULT_VERSION=v4.3.1
YARA_VERSION=${YARA_VERSION:-$DEFAULT_VERSION}

echo "$YARA_VERSION"
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
var YapscanVersion = Version{
Major: 0,
Minor: 19,
Bugfix: 1,
Bugfix: 3,
}

type Version struct {
Expand Down

0 comments on commit 5e7d582

Please sign in to comment.