From 2a3c361450eae45e0849d468d509cec8cc837f32 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Fri, 28 Jun 2024 20:26:43 -0500 Subject: [PATCH] bump action versions --- .github/workflows/fetch-now.yml | 4 ++-- .github/workflows/fetch-web.yml | 4 ++-- .github/workflows/update-now.yml | 2 +- .github/workflows/update-web.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/fetch-now.yml b/.github/workflows/fetch-now.yml index 282cf4a..2f03fd5 100644 --- a/.github/workflows/fetch-now.yml +++ b/.github/workflows/fetch-now.yml @@ -15,14 +15,14 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Fetch Now Page run: | curl --location --header "Authorization: Bearer ${{ secrets.OMG_TOKEN }}" \ "https://api.omg.lol/address/${{ secrets.OMG_ADDR }}/now" | \ jq -r .response.now.content > now.md - name: Commit Now Page - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: 'fetch /now page' file_pattern: 'now.md' diff --git a/.github/workflows/fetch-web.yml b/.github/workflows/fetch-web.yml index 267eda5..2f794ea 100644 --- a/.github/workflows/fetch-web.yml +++ b/.github/workflows/fetch-web.yml @@ -15,7 +15,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Fetch Web Page run: | response=$(curl --location --header "Authorization: Bearer ${{ secrets.OMG_TOKEN }}" \ @@ -25,7 +25,7 @@ jobs: jq -r .css <<< $response > web.css jq -r .head <<< $response > web_head.html - name: Commit Now Page - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: 'fetch web page' file_pattern: 'web.md web.css web_head.html' diff --git a/.github/workflows/update-now.yml b/.github/workflows/update-now.yml index 56826c3..c07b72a 100644 --- a/.github/workflows/update-now.yml +++ b/.github/workflows/update-now.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Update Now Page run: | request_body='{"listed": "1", "content": '"$(jq -Rsa . now.md)"'}' diff --git a/.github/workflows/update-web.yml b/.github/workflows/update-web.yml index 8743fa6..8218e02 100644 --- a/.github/workflows/update-web.yml +++ b/.github/workflows/update-web.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Update Web Page run: | request_body='{"publish": true, "content": '"$(jq -Rsa . web.md)"', "css": '"$(jq -Rsa . web.css)"', "head": '"$(jq -Rsa . web_head.html)"'}'