Skip to content

Bump golang.org/x/sys from 0.15.0 to 0.16.0 #113

Bump golang.org/x/sys from 0.15.0 to 0.16.0

Bump golang.org/x/sys from 0.15.0 to 0.16.0 #113

Workflow file for this run

# Copyright 2022 Yahoo Inc.
# Licensed under the terms of the Apache License 2.0. Please see LICENSE file in project root for terms.
name: license check
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
license-check:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: 1.19.4
- name: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install addlicense
run: go install github.com/google/addlicense@latest
- name: Check license headers
run: |
set -e
addlicense -l apache -c 'Yahoo,' -ignore "third_party/**" -v *
git diff --exit-code