Hosted: Network Filtering with Harden-Runner #10
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: "Hosted: Network Filtering with Harden-Runner" | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@v2 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
ghcr.io:443 | |
github.com:443 | |
registry.npmjs.org:443 | |
www.githubstatus.com:443 | |
- uses: crazy-max/ghaction-github-status@v4 | |
- uses: actions/checkout@v3 | |
- name: npm install | |
run: | | |
cd ./src/exfiltration-demo | |
npm install | |
- name: get-npm-version | |
id: package-version | |
uses: martinbeentjes/[email protected] | |
with: | |
path: src/exfiltration-demo | |
- uses: madhead/semver-utils@latest | |
id: version | |
with: | |
version: 1.2.3 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ${{ github.repository }}/prod:latest | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ghcr.io | |
workdir: ./src/exfiltration-demo |