Error: unable to verify the first certificate #222
-
I've encountered a error and I'm not sure how to resolve it. |
Beta Was this translation helpful? Give feedback.
Answered by
gautamkrishnar
Jun 14, 2023
Replies: 1 comment 6 replies
-
@chatseeon this is because of a SSL issue on your website. Workflow can't do anything to fix it. You should fix it in your website's source code. > curl https://csworldlet.top/author/chatseeon/feed/
curl: (92) HTTP/2 stream 1 was not closed cleanly: PROTOCOL_ERROR (err 1) Alternatively you can ignore the SSL errors via: name: Latest blog post workflow
on:
schedule: # Run workflow automatically
- cron: '0 * * * *' # Runs every hour, on the hour
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the GitHub Actions Workflow page directly
permissions:
contents: write # To write the generated contents to the readme
jobs:
update-readme-with-blog:
name: Update this repo's README with latest blog posts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Pull in dev.to posts
uses: gautamkrishnar/blog-post-workflow@v1
env:
NODE_TLS_REJECT_UNAUTHORIZED: 0
with:
feed_list: "https://csworldlet.top/author/chatseeon/feed/" |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
chatseeon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@chatseeon this is because of a SSL issue on your website. Workflow can't do anything to fix it. You should fix it in your website's source code.
> curl https://csworldlet.top/author/chatseeon/feed/ curl: (92) HTTP/2 stream 1 was not closed cleanly: PROTOCOL_ERROR (err 1)
Alternatively you can ignore the SSL errors via: