Skip to content

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #320

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1

build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #320

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