Skip to content

chore: bump github.com/opencontainers/runc from 1.1.14 to 1.2.8 #509

chore: bump github.com/opencontainers/runc from 1.1.14 to 1.2.8

chore: bump github.com/opencontainers/runc from 1.1.14 to 1.2.8 #509

Workflow file for this run

name: "Build"
on: [push, pull_request]
jobs:
lint:
name: golangci-lint
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version: '1.24.x'
- name: checkout
uses: actions/checkout@v5
- name: lint
run: make lint
test:
name: test
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version: '1.24.x'
- name: checkout
uses: actions/checkout@v5
- name: install hwdata -yq
run: sudo apt-get install hwdata -yq
- name: test
run: make test-coverage
build:
name: build
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v6
with:
go-version: '1.24.x'
- name: checkout
uses: actions/checkout@v5
- name: build
run: make build