chore(go.mod): fix dependabot alerts (#1210)

* chore(go.mod): fix dependabot alerts

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>

* chore(test): update image tags

We have cleaned up older golang images in the project.

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>

* ci(gqlgen): fix gql schema validation GH workflow after npm upgrade

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>

---------

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
This commit is contained in:
Ramkumar Chinchani
2023-02-17 13:54:49 -08:00
committed by GitHub
parent 1f9f178a57
commit be33f7b252
11 changed files with 242 additions and 93 deletions
+4 -4
View File
@@ -2,7 +2,7 @@ name: "GQL generation and linting"
# Validate gqlgen works
# Validate there are no uncommitted changes after running gqlgen
# Lint the graphql schemma
# Lint the graphql schema
on:
push:
@@ -36,7 +36,7 @@ jobs:
run: |
make verify-gql-committed
gqllint:
name: Check GQL schemma follows best practices
name: Check GQL schema follows best practices
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -44,6 +44,6 @@ jobs:
run: |
cd $GITHUB_WORKSPACE
npm install graphql-schema-linter graphql
- name: Lint the graphql schemma
- name: Lint the graphql schema
run: |
$(npm bin)/graphql-schema-linter pkg/extensions/search/*.graphql
npm exec graphql-schema-linter pkg/extensions/search/*.graphql