Skip to content

Bump github.com/google/go-containerregistry from 0.19.1 to 0.19.2 in the go-dependencies group across 1 directory #866

Bump github.com/google/go-containerregistry from 0.19.1 to 0.19.2 in the go-dependencies group across 1 directory

Bump github.com/google/go-containerregistry from 0.19.1 to 0.19.2 in the go-dependencies group across 1 directory #866

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: make test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-and-build-windows:
runs-on: windows-2019
steps:
- name: Set git to use LF and symlinks
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --global core.symlinks true
- uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: make test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}