Skip to content

Bump actions/checkout from 2 to 4 #198

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #198

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18.0
- name: Install Pkger
run: go install --mod=readonly github.com/markbates/pkger/cmd/pkger
- name: Build
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: --rm-dist --snapshot
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18.0
- name: Test
run: go test ./...
integration_ghes:
name: Integration Test (GitHub Enterprise Server)
runs-on: ubuntu-20.04
if: ${{ github.event != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18.0
- name: Build
run: go build
- name: Test
run: ./codeql-action-sync sync --destination-url https://ghe.io/ --destination-repository codeql-action-sync-tool/integration-test
env:
CODEQL_ACTION_SYNC_TOOL_DESTINATION_TOKEN: ${{ secrets.INTEGRATION_TEST_GHES_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18.0
- name: Check Modules
run: |
go mod tidy
if [ ! -z "$(git status --porcelain=v1)" ]; then
>&2 echo "Please run \`go mod tidy\` and commit the result."
exit 1
fi
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.29
licensedci:
name: Check Licenses
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18.0
- name: Setup licensedci
uses: jonabc/setup-licensed@v1
with:
version: 2.x
- name: Run licensedci
run: licensed status