Skip to content

chore(deps): update dependency go to v1.25.5 (#27) #65

chore(deps): update dependency go to v1.25.5 (#27)

chore(deps): update dependency go to v1.25.5 (#27) #65

Workflow file for this run

name: Check
on:
push:
env:
EARTHLY_VERSION: 0.8.16
jobs:
check:
runs-on: ubuntu-24.04-arm
name: check (${{ matrix.go}})
strategy:
matrix:
go: [1.23, 1.24, 1.25]
continue-on-error: true
steps:
- uses: EarthBuild/actions-setup@main
with:
version: ${{ env.EARTHLY_VERSION }}
use-cache: false
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- run: echo "go_version=${{ matrix.go }}" >> .arg
- name: Lint
run: earthly --ci +lint
- name: Test
run: earthly --ci +test
- name: Go Vulnerability Check
run: earthly --ci +govulncheck