Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/standard-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
image-slug: ${{ steps.slugify-image.outputs.slug }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand All @@ -136,7 +136,13 @@
jq '. | .+{"features": {"containerd-snapshotter": true}}' /etc/docker/daemon.json > /tmp/docker-daemon-with-containerd.json
sudo mv /tmp/docker-daemon-with-containerd.json /etc/docker/daemon.json
cat /etc/docker/daemon.json
sudo systemctl restart docker
sudo systemctl restart docker || journalctl -xeu docker.service
sudo systemctl restart docker || systemctl status docker.service
docker info -f '{{ .DriverStatus }}'
Expand Down Expand Up @@ -350,7 +356,7 @@
packages: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down Expand Up @@ -383,7 +389,7 @@
packages: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down Expand Up @@ -422,7 +428,7 @@
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down Expand Up @@ -452,7 +458,7 @@
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
pull-requests: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
issues: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
uses: h0x0er/harden-runner@int # v2.11.1
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs

Expand Down
Loading