Bump follow-redirects from 1.15.3 to 1.15.4 #22
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: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
# Review gh actions docs if you want to further define triggers, paths, etc | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
# the enviroment to deploy to / use secrets from | |
environment: no-secret | |
# modify the default permissions of the GITHUB_TOKEN, so as to only allow least priveleges | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
uses: ConsenSys/docs-gha/build@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |