From a39f9e6ef8fc298f3fb7608fff7bd7dd6c95513c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Nov 2025 18:05:28 +0000 Subject: [PATCH 1/3] [chore] : bump jidicula/go-fuzz-action in the actions group Bumps the actions group with 1 update: [jidicula/go-fuzz-action](https://github.com/jidicula/go-fuzz-action). Updates `jidicula/go-fuzz-action` from 94694730887c9c0b8431d36c878f1b1bd368b7ff to ea33f9835ea7f6071339827df940b777dfc78d11 - [Release notes](https://github.com/jidicula/go-fuzz-action/releases) - [Commits](https://github.com/jidicula/go-fuzz-action/compare/94694730887c9c0b8431d36c878f1b1bd368b7ff...ea33f9835ea7f6071339827df940b777dfc78d11) --- updated-dependencies: - dependency-name: jidicula/go-fuzz-action dependency-version: ea33f9835ea7f6071339827df940b777dfc78d11 dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/fuzz.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index fb4f3d3..dd2d665 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: # commit hash == v1.2.0 - - uses: jidicula/go-fuzz-action@94694730887c9c0b8431d36c878f1b1bd368b7ff # TSCCR: no entry for action: "jidicula/go-fuzz-action" + - uses: jidicula/go-fuzz-action@ea33f9835ea7f6071339827df940b777dfc78d11 # TSCCR: no entry for action: "jidicula/go-fuzz-action" with: fuzz-time: 30s fuzz-regexp: Fuzz_lexerNextToken @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: # commit hash == v1.2.0 - - uses: jidicula/go-fuzz-action@94694730887c9c0b8431d36c878f1b1bd368b7ff # TSCCR: no entry for action: "jidicula/go-fuzz-action" + - uses: jidicula/go-fuzz-action@ea33f9835ea7f6071339827df940b777dfc78d11 # TSCCR: no entry for action: "jidicula/go-fuzz-action" with: fuzz-time: 30s fuzz-regexp: Fuzz_parserParse @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: # commit hash == v1.2.0 - - uses: jidicula/go-fuzz-action@94694730887c9c0b8431d36c878f1b1bd368b7ff # TSCCR: no entry for action: "jidicula/go-fuzz-action" + - uses: jidicula/go-fuzz-action@ea33f9835ea7f6071339827df940b777dfc78d11 # TSCCR: no entry for action: "jidicula/go-fuzz-action" with: fuzz-time: 30s fuzz-regexp: Fuzz_mqlParse \ No newline at end of file From 6c0c41e489de17f3be9b7564ff7d8e16dc26fb2e Mon Sep 17 00:00:00 2001 From: Johan Brandhorst-Satzkorn Date: Mon, 3 Nov 2025 10:18:44 -0800 Subject: [PATCH 2/3] Upgrade to Go 1.24 in tests --- tests/postgres/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/postgres/go.mod b/tests/postgres/go.mod index 85b7ca8..046ad44 100644 --- a/tests/postgres/go.mod +++ b/tests/postgres/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/mql/tests/postgres -go 1.23.0 +go 1.24.0 require ( github.com/hashicorp/go-dbw v0.1.4 From fcd7e985b4fcc04c82efbeccb8862b593e40073b Mon Sep 17 00:00:00 2001 From: Johan Brandhorst-Satzkorn Date: Mon, 3 Nov 2025 10:42:39 -0800 Subject: [PATCH 3/3] Set Go version explicitly --- .github/workflows/fuzz.yml | 5 ++++- .github/workflows/tests-postgres.yml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index dd2d665..b77666b 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -14,6 +14,7 @@ jobs: with: fuzz-time: 30s fuzz-regexp: Fuzz_lexerNextToken + go-version: 1.25 fuzz-parser-test: name: Fuzz parser test runs-on: ubuntu-latest @@ -23,6 +24,7 @@ jobs: with: fuzz-time: 30s fuzz-regexp: Fuzz_parserParse + go-version: 1.25 fuzz-mql-Parse-test: name: Fuzz mql.Parse test runs-on: ubuntu-latest @@ -31,4 +33,5 @@ jobs: - uses: jidicula/go-fuzz-action@ea33f9835ea7f6071339827df940b777dfc78d11 # TSCCR: no entry for action: "jidicula/go-fuzz-action" with: fuzz-time: 30s - fuzz-regexp: Fuzz_mqlParse \ No newline at end of file + fuzz-regexp: Fuzz_mqlParse + go-version: 1.25 diff --git a/.github/workflows/tests-postgres.yml b/.github/workflows/tests-postgres.yml index 9497ace..f51abf1 100644 --- a/.github/workflows/tests-postgres.yml +++ b/.github/workflows/tests-postgres.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: dbversion: ["postgres:latest"] - go: ["1.24", "1.23"] + go: ["1.25", "1.24"] platform: [ubuntu-latest] # can not run in macOS and Windows runs-on: ${{ matrix.platform }}