Skip to content

Bump github.com/opencontainers/runc from 1.3.0 to 1.3.3 #84

Bump github.com/opencontainers/runc from 1.3.0 to 1.3.3

Bump github.com/opencontainers/runc from 1.3.0 to 1.3.3 #84

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/vanilla-os/pico:main
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
- name: Install build dependencies
run: |
apt-get update
apt-get install -y podman build-essential pkg-config libbtrfs-dev libdevmapper-dev libgpgme-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./tests/...