Skip to content

chore(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 #228

chore(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6

chore(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 #228

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-ci-${{ github.event.number || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: quay.io/projectquay/golang:1.23
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
e2e:
name: End-to-End test (UBI 10)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: registry.access.redhat.com/ubi10:latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go }}
- name: Install Dependencies
run: dnf install -y make jq util-linux
- name: E2E Tests
run: make e2e