Skip to content

chore(deps): bump docker/setup-buildx-action from 3.0.0 to 3.3.0 #99

chore(deps): bump docker/setup-buildx-action from 3.0.0 to 3.3.0

chore(deps): bump docker/setup-buildx-action from 3.0.0 to 3.3.0 #99

Workflow file for this run

---
name: Pull Request
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GO_VERSION: "1.18"
jobs:
build:
name: Checks
runs-on: ubuntu-20.04
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Setup golangci-lint
uses: golangci/[email protected]
with:
args: --timeout=10m --verbose
version: v1.45
- name: Build
run: make build
- name: Run Unit Tests
run: make test
- name: Run Integration Tests
run: make test-integration
- name: Run Tunnel vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'tunnel-results.sarif'
severity: 'CRITICAL'
exit-code: 0
- name: Upload Tunnel scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'tunnel-results.sarif'
- name: Run Tunnel vulnerability scanner in IaC mode
uses: aquasecurity/[email protected]
with:
scan-type: 'config'
hide-progress: false
format: 'table'