Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 #10

Bump golang.org/x/net from 0.7.0 to 0.17.0

Bump golang.org/x/net from 0.7.0 to 0.17.0 #10

Workflow file for this run

name: Check changes in the Main branch
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GOPRIVATE: "github.com/napptive/*"
GH_NAPP_USER: ${{ secrets.GH_NAPP_USER }}
GH_NAPP_TOKEN: ${{ secrets.GH_NAPP_TOKEN }}
jobs:
build:
name: Build All
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
id: go
- name: Configure git for private modules
run: git config --global url."https://${GH_NAPP_USER}:${GH_NAPP_TOKEN}@github.com".insteadOf "https://github.com"
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Make all
run: make all
golangci:
name: GoLangCI
runs-on: ubuntu-latest
needs: build
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
id: go
- name: Configure git for private modules
run: git config --global url."https://${GH_NAPP_USER}:${GH_NAPP_TOKEN}@github.com".insteadOf "https://github.com"
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.48
args: --timeout=3m
skip-pkg-cache: true