Skip to content

Bump actions/checkout from 4.1.4 to 4.1.6 #69

Bump actions/checkout from 4.1.4 to 4.1.6

Bump actions/checkout from 4.1.4 to 4.1.6 #69

Workflow file for this run

name: main
on:
push:
branches:
- master
pull_request:
jobs:
verify-root:
name: Verify root module
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc # v5.1.0
with:
version: v1.31
args: --verbose
- name: Run tests
run: |
go test -v ./...
verify-gopgv9:
name: Verify gopgv9
runs-on: ubuntu-latest
defaults:
run:
working-directory: gopgv9
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc # v5.1.0
with:
version: v1.31
working-directory: gopgv9
args: --verbose
- name: Run tests
run: |
go test -v ./...
verify-gopgv10:
name: Verify gopgv10
runs-on: ubuntu-latest
defaults:
run:
working-directory: gopgv10
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: |
go mod download
go mod vendor
- name: Run linters
uses: golangci/golangci-lint-action@9d1e0624a798bb64f6c3cea93db47765312263dc # v5.1.0
with:
version: v1.31
working-directory: gopgv10
args: --verbose
- name: Run tests
run: |
go test -v ./...