Bump golang.org/x/net from 0.0.0-20211205041911-012df41ee64c to 0.17.0 #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Continuous Integration | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
GOBIN: ${{ github.workspace }}/bin | |
PATH: ${{ github.workspace }}/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin | |
GOVER: 1.17.3 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ env.GOVER }} | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Lint Code | |
run: make lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ env.GOVER }} | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Run Tests | |
run: make tests | |
env: | |
MANAGER_APP_ID: ${{ secrets.MANAGER_APP_ID }} | |
MANAGER_APP_INSTALLATION_ID: ${{ secrets.MANAGER_APP_INSTALLATION_ID }} | |
MANAGER_APP_PRIVATE_KEY: ${{ secrets.MANAGER_APP_PRIVATE_KEY }} | |
MANAGER_ORG: ${{ secrets.MANAGER_ORG }} | |
MANAGER_USER: ${{ secrets.MANAGER_USER }} | |
MANAGER_ADMIN_PAT: ${{ secrets.MANAGER_ADMIN_PAT }} |