Skip to content

chore(deps): Bump the go-deps group across 1 directory with 4 updates #764

chore(deps): Bump the go-deps group across 1 directory with 4 updates

chore(deps): Bump the go-deps group across 1 directory with 4 updates #764

Workflow file for this run

# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
---
name: Build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions: {}
jobs:
build:
name: Build and test
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: src/aws-type-downloader/go.mod
cache-dependency-path: src/aws-type-downloader/go.sum
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20
- name: Build aws-type-downloader
env:
GOPROXY: https://proxy.golang.org
working-directory: src/aws-type-downloader
run: go build .
- name: golangci-lint
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0
with:
version: latest
working-directory: src/aws-type-downloader
- run: git submodule update --init --recursive
- run: npm ci
working-directory: bicep-types/src/bicep-types
- run: npm run build
working-directory: bicep-types/src/bicep-types
- run: npm ci
working-directory: src/aws-type-generator
- run: npm run build
working-directory: src/aws-type-generator
- run: npm test
working-directory: src/aws-type-generator