Skip to content

Bump golang.org/x/term from 0.25.0 to 0.26.0 #27

Bump golang.org/x/term from 0.25.0 to 0.26.0

Bump golang.org/x/term from 0.25.0 to 0.26.0 #27

Workflow file for this run

name: vc-jose-cose-go-ci
# when:
# - a pull request is opened against main
# - commits are pushed to main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# used to run action manually via the UI
workflow_dispatch:
jobs:
vulnerability-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.2
- name: Install Mage
run: go install github.com/magefile/mage
- name: Check Vulnerabilities
run: mage -v vuln
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.2
- name: Install Mage
run: go install github.com/magefile/mage
- name: Build
run: mage build
- name: Test
run: mage citest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3