Bump golang.org/x/net from 0.7.0 to 0.17.0 #417
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: "Update Editor's Copy" | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
- CONTRIBUTING.md | |
- LICENSE.md | |
- .gitignore | |
- "go/**" | |
- "js/**" | |
pull_request: | |
paths-ignore: | |
- README.md | |
- CONTRIBUTING.md | |
- LICENSE.md | |
- .gitignore | |
- "go/**" | |
- "js/**" | |
jobs: | |
build: | |
name: "Update Editor's Copy" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Cache Setup" | |
id: cache-setup | |
run: | | |
mkdir -p "$HOME"/.cache/xml2rfc | |
echo "::set-output name=path::$HOME/.cache/xml2rfc" | |
date -u "+::set-output name=date::%FT%T" | |
- name: "Cache References" | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.cache-setup.outputs.path }} | |
key: refcache-${{ steps.cache-setup.outputs.date }} | |
restore-keys: | | |
refcache-${{ steps.cache-setup.outputs.date }} | |
refcache- | |
- name: "Build Drafts" | |
uses: martinthomson/i-d-template@v1 | |
- name: "Build Extra Pages" | |
run: | | |
pip3 install bikeshed | |
bikeshed update | |
bikeshed spec loading.bs | |
bikeshed spec subresource-loading.bs | |
- name: "Update GitHub Pages" | |
uses: martinthomson/i-d-template@v1 | |
if: ${{ github.event_name == 'push' }} | |
with: | |
make: gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Save HTML" | |
uses: actions/upload-artifact@v2 | |
with: | |
path: "*.html" | |
- name: "Save Text" | |
uses: actions/upload-artifact@v2 | |
with: | |
path: "*.txt" |