Skip to content

Commit

Permalink
⬆️ Update @upptime to v1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
upptime-bot committed Mar 2, 2023
1 parent f97a5e1 commit a578997
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/graphs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate graphs
uses: upptime/[email protected]
with:
command: "graphs"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
6 changes: 3 additions & 3 deletions .github/workflows/response-time.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update response time
uses: upptime/[email protected]
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
17 changes: 9 additions & 8 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,44 +21,45 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update template
uses: upptime/[email protected]
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- name: Update response time
uses: upptime/[email protected]
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: Update summary in README
uses: upptime/[email protected]
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- name: Generate graphs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Graphs CI
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate site
uses: upptime/[email protected]
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- uses: peaceiris/[email protected]
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
github_token: ${{ secrets.GH_PAT || github.token }}
publish_dir: "site/status-page/__sapper__/export/"
force_orphan: "false"
user_name: "Upptime Bot"
user_email: "[email protected]"
9 changes: 5 additions & 4 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate site
uses: upptime/[email protected]
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- uses: peaceiris/[email protected]
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
github_token: ${{ secrets.GH_PAT || github.token }}
publish_dir: "site/status-page/__sapper__/export/"
force_orphan: "false"
user_name: "Upptime Bot"
user_email: "[email protected]"
6 changes: 3 additions & 3 deletions .github/workflows/summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update summary in README
uses: upptime/[email protected]
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
6 changes: 3 additions & 3 deletions .github/workflows/update-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update template
uses: upptime/uptime-monitor@master
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
6 changes: 3 additions & 3 deletions .github/workflows/updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update code
uses: upptime/updates@master
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
6 changes: 3 additions & 3 deletions .github/workflows/uptime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Check endpoint status
uses: upptime/[email protected]
with:
command: "update"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}

0 comments on commit a578997

Please sign in to comment.