build(deps): bump github.com/open-policy-agent/opa from 1.5.1 to 1.6.0

Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.5.1 to 1.6.0.
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-policy-agent/opa/compare/v1.5.1...v1.6.0)

---
updated-dependencies:
- dependency-name: github.com/open-policy-agent/opa
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-06-30 17:04:07 +00:00
committed by GitHub
parent 7d6bc2a485
commit 77c5c75436
56 changed files with 6072 additions and 759 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
package parser
import (
"fmt"
"strconv"
"github.com/vektah/gqlparser/v2/ast"
@@ -106,7 +105,7 @@ func (p *parser) next() lexer.Token {
// Increment the token count before reading the next token
p.tokenCount++
if p.maxTokenLimit != 0 && p.tokenCount > p.maxTokenLimit {
p.err = fmt.Errorf("exceeded token limit of %d", p.maxTokenLimit)
p.err = gqlerror.Errorf("exceeded token limit of %d", p.maxTokenLimit)
return p.prev
}
if p.peeked {