From 7a588a7b59051bb2620aced6689233579ef9475e Mon Sep 17 00:00:00 2001 From: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> Date: Sun, 5 Dec 2021 15:12:03 +0530 Subject: [PATCH] chore(ci): Use Windows Actions to avoid SSL errors (#3047) --- .github/workflows/issue_comment.yml | 5 ++--- .github/workflows/issues.yml | 5 ++--- .github/workflows/pull_request.yml | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/issue_comment.yml b/.github/workflows/issue_comment.yml index f8dd2f08cb..e66e2a8e50 100644 --- a/.github/workflows/issue_comment.yml +++ b/.github/workflows/issue_comment.yml @@ -5,12 +5,11 @@ name: Commented Pull Request jobs: pullRequestHandler: name: PullRequestHandler - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@main - name: PullRequestHandler - uses: Ash258/Scoop-GithubActions@stable + uses: ScoopInstaller/Scoop-GithubActions@main if: startsWith(github.event.comment.body, '/verify') env: - GITH_EMAIL: cabera.jakub@gmail.com GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 1229902ebc..ad2246c5ee 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -5,12 +5,11 @@ name: Issues jobs: issueHandler: name: IssueHandler - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@main - name: IssueHandler - uses: Ash258/Scoop-GithubActions@stable + uses: ScoopInstaller/Scoop-GithubActions@main if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) env: - GITH_EMAIL: cabera.jakub@gmail.com GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d145df36a5..7d0e78145b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -5,11 +5,10 @@ name: Pull Requests jobs: pullRequestHandler: name: PullRequestHandler - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@main - name: PullRequestHandler - uses: Ash258/Scoop-GithubActions@stable + uses: ScoopInstaller/Scoop-GithubActions@main env: - GITH_EMAIL: cabera.jakub@gmail.com GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}