Skip to content

Fix code scanning alert - Arbitrary file access during archive extraction ("Zip Slip") #8

Fix code scanning alert - Arbitrary file access during archive extraction ("Zip Slip")

Fix code scanning alert - Arbitrary file access during archive extraction ("Zip Slip") #8

name: First Workflow
on:
workflow_dispatch:
issues:
types: [opened]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- name: Step 1
run: echo "Step 1 complete!"
- name: Step 2
run: echo "Step 2 complete!"
job2:
needs: job1
name: Cowsays
runs-on: ubuntu-latest
steps:
- name: Ship it
uses: mscoutermarsh/cowsays-action@master
with:
text: 'ship ship ship!'
color: 'magenta'