Skip to content

build(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.11.0 #301

build(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.11.0

build(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.11.0 #301

Workflow file for this run

name: Check compiled action script CI
on:
push:
branches:
- main
pull_request:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Build Action
run: cd action && npm i && npm run all
- name: Check if there's a diff
run: git diff
- name: Verify no unstaged changes
run: |
if [[ "$(git status --porcelain)" != "" ]]; then
echo Unstaged changes detected
exit 1
fi
- name: Lint Code Base
uses: github/super-linter@v4
env:
DEFAULT_BRANCH: main
VALIDATE_JSON: true