4 Commits

Author SHA1 Message Date
6daf7887ba Change a page 2023-01-31 20:43:56 -06:00
933272ba64 Make audit run on any branch 2023-01-31 20:43:18 -06:00
bed010db7f a 2023-01-31 20:41:58 -06:00
fdab621387 Use actions/checkout v3 2023-01-31 20:32:16 -06:00
4 changed files with 9 additions and 9 deletions

View File

@ -2,8 +2,6 @@ name: Audit
on:
push:
branches:
- master
pull_request:
jobs:
@ -18,7 +16,7 @@ jobs:
- name: Checkout (pull_request)
if: github.event.pull_request
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
@ -26,7 +24,7 @@ jobs:
- name: Checkout (push)
if: github.event_name == 'push'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
@ -37,7 +35,7 @@ jobs:
hugo --printI18nWarnings --printPathWarnings --baseURL https://localhost -d old/
- name: Checkout current commit
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
@ -68,7 +66,7 @@ jobs:
urls="${urls//'%'/'%25'}"
urls="${urls//$'\n'/'%0A'}"
urls="${urls//$'\r'/'%0D'}"
echo "::set-output name=urls::$urls"
echo "urls=$urls" >> $GITHUB_OUTPUT
- name: Install Caddy
if: "${{ steps.changed_urls.outputs.urls != '' }}"
@ -101,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0

View File

@ -14,7 +14,7 @@ jobs:
url: https://bbaovanc.com
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0

View File

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0

View File

@ -289,3 +289,5 @@ Rebane also [made a YouTube video][txnor-youtube-video] about this trick. Make
sure to check it out too!
[txnor-youtube-video]: https://www.youtube.com/watch?v=km8CR-fdB7o
I changed the page yay