chore: update jekyll and ruby to solve security alerts #840
Workflow file for this run
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: Verify Types | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: oldstable | |
- name: Install gofumpt | |
run: go install mvdan.cc/gofumpt@latest | |
- name: Install Browsers | |
run: | | |
go install ./... | |
playwright install --with-deps | |
- name: Regenerate APIs | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Github Actions" | |
go generate | |
- name: Verify API is up to date | |
run: git diff --exit-code --ignore-submodules --ignore-cr-at-eol --ignore-space-at-eol |