Skip to content

fix: Code scanning alert #1: Arbitrary file access during archive extraction ("Zip Slip") #402

fix: Code scanning alert #1: Arbitrary file access during archive extraction ("Zip Slip")

fix: Code scanning alert #1: Arbitrary file access during archive extraction ("Zip Slip") #402

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
GO_VERSION: 1.21.1
jobs:
build-go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: make build