diff options
| author | 2023-12-31 17:17:11 +0000 | |
|---|---|---|
| committer | 2023-12-31 17:17:11 +0000 | |
| commit | 0ccd4fb0f6e3bad997640575c80d66f88037e822 (patch) | |
| tree | 4f7f261f9c7aaf9972973506e0aec2710d7852ad /.github | |
| parent | Revert 'Code goes here on a new line' to 'Hello world!' (diff) | |
| parent | Bump rapidfuzz from 3.6.0 to 3.6.1 (#2870) (diff) | |
Merge branch 'main' into swfarnsworth/tag-updates
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint-test.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/status_embed.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 888bb5bc9..bec7d13ea 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -72,7 +72,7 @@ jobs: - name: Upload a Build Artifact if: always() && steps.prepare-artifact.outcome == 'success' continue-on-error: true - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pull-request-payload path: pull_request_payload.json diff --git a/.github/workflows/status_embed.yaml b/.github/workflows/status_embed.yaml index 60bdaf770..8c99bb1b2 100644 --- a/.github/workflows/status_embed.yaml +++ b/.github/workflows/status_embed.yaml @@ -43,7 +43,7 @@ jobs: curl -s -H "Authorization: token $GITHUB_TOKEN" ${{ github.event.workflow_run.artifacts_url }} > artifacts.json DOWNLOAD_URL=$(cat artifacts.json | jq -r '.artifacts[] | select(.name == "pull-request-payload") | .archive_download_url') [ -z "$DOWNLOAD_URL" ] && exit 1 - wget --quiet --header="Authorization: token $GITHUB_TOKEN" -O pull_request_payload.zip $DOWNLOAD_URL || exit 2 + curl -sSL -H "Authorization: token $GITHUB_TOKEN" -o pull_request_payload.zip $DOWNLOAD_URL || exit 2 unzip -p pull_request_payload.zip > pull_request_payload.json [ -s pull_request_payload.json ] || exit 3 echo "::set-output name=pr_author_login::$(jq -r '.user.login // empty' pull_request_payload.json)" |