mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.16.1 to 2.19.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](fe10465874...8d3c67de8e)
---
updated-dependencies:
- dependency-name: step-security/harden-runner
dependency-version: 2.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
269 lines
7.4 KiB
YAML
269 lines
7.4 KiB
YAML
# Checks that the tests are passing.
|
|
|
|
name: Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
paths:
|
|
- 'm4/**'
|
|
- 'src/**.c'
|
|
- 'src/**.h'
|
|
- 'src/**.mk'
|
|
- 'src/**Makefile'
|
|
- 'test/**'
|
|
- .github/workflows/test.yml
|
|
- Makefile
|
|
- config.mk.in
|
|
- config.sh.in
|
|
- configure
|
|
- configure.ac
|
|
- etc/profile-a-l/default.profile
|
|
- src/firecfg/firecfg.config
|
|
pull_request:
|
|
paths:
|
|
- 'm4/**'
|
|
- 'src/**.c'
|
|
- 'src/**.h'
|
|
- 'src/**.mk'
|
|
- 'src/**Makefile'
|
|
- 'test/**'
|
|
- .github/workflows/test.yml
|
|
- Makefile
|
|
- config.mk.in
|
|
- config.sh.in
|
|
- configure
|
|
- configure.ac
|
|
- etc/profile-a-l/default.profile
|
|
- src/firecfg/firecfg.config
|
|
|
|
permissions: # added using https://github.com/step-security/secure-workflows
|
|
contents: read
|
|
|
|
#
|
|
# Faster tests
|
|
#
|
|
|
|
jobs:
|
|
test-main:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
env:
|
|
SHELL: /bin/bash
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
azure.archive.ubuntu.com:80
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec bridge-utils bubblewrap
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure CC=gcc-12
|
|
--prefix=/usr --enable-fatal-warnings --enable-analyzer
|
|
--enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)"
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|
|
- run: make lab-setup
|
|
- run: make test-seccomp-extra
|
|
- run: make test-firecfg
|
|
- run: make test-capabilities
|
|
- run: make test-apparmor
|
|
- run: make test-appimage
|
|
- run: make test-chroot
|
|
- run: make test-fcopy
|
|
|
|
#
|
|
# Slower tests
|
|
#
|
|
|
|
test-fs:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
env:
|
|
SHELL: /bin/bash
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
azure.archive.ubuntu.com:80
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec bridge-utils bubblewrap
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure CC=gcc-12
|
|
--prefix=/usr --enable-fatal-warnings --enable-analyzer
|
|
--enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)"
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|
|
- run: make lab-setup
|
|
- run: make test-private-etc
|
|
- run: make test-fs
|
|
- run: make test-filters
|
|
|
|
test-environment:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
env:
|
|
SHELL: /bin/bash
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
azure.archive.ubuntu.com:80
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec bridge-utils bubblewrap
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure CC=gcc-12
|
|
--prefix=/usr --enable-fatal-warnings --enable-analyzer
|
|
--enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)"
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|
|
- run: make lab-setup
|
|
- run: make test-environment
|
|
- run: make test-profiles
|
|
|
|
test-utils:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
env:
|
|
SHELL: /bin/bash
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
azure.archive.ubuntu.com:80
|
|
debian.org:80
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
www.debian.org:443
|
|
www.debian.org:80
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec bridge-utils bubblewrap
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure CC=gcc-12
|
|
--prefix=/usr --enable-fatal-warnings --enable-analyzer
|
|
--enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)"
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|
|
- run: make lab-setup
|
|
- run: make test-utils
|
|
|
|
test-network:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
env:
|
|
SHELL: /bin/bash
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
1.1.1.1:1025
|
|
azure.archive.ubuntu.com:80
|
|
debian.org:80
|
|
dns.quad9.net:53
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
whois.pir.org:43
|
|
www.debian.org:443
|
|
www.debian.org:80
|
|
yahoo.com:1025
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois bubblewrap
|
|
bridge-utils
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure CC=gcc-12
|
|
--prefix=/usr --enable-fatal-warnings --enable-analyzer
|
|
--enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)"
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|
|
- run: make lab-setup
|
|
- run: make test-fnetfilter
|
|
- run: make test-fnettrace
|
|
- run: make test-network
|