Bump libc from 0.2.164 to 0.2.168 #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fedora | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
container: | |
image: fedora:40 | |
options: --privileged | |
steps: | |
- name: Install dependencies | |
run: | | |
dnf install -y openssl-devel python3-devel sqlite-devel dnf-plugins-core util-linux rust cargo skopeo | |
dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo | |
dnf install -y docker-ce-cli | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/test |