Skip to content

Bump actions/setup-go from 4.1.0 to 5.0.0 #71

Bump actions/setup-go from 4.1.0 to 5.0.0

Bump actions/setup-go from 4.1.0 to 5.0.0 #71

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
pull_request_target:
types:
- closed
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read # for actions/checkout to fetch code
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: 1.19.x
cache: true
- name: Test
run: make test