From 4c0ff1c489dca52fedb26375d7d8fe7bd9233f19 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Mon, 5 Feb 2024 17:19:59 -0500 Subject: [PATCH 1/3] Update release-new-action-version.yml (#516) --- .github/workflows/release-new-action-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-new-action-version.yml b/.github/workflows/release-new-action-version.yml index 1d0fb7f..0b64c97 100644 --- a/.github/workflows/release-new-action-version.yml +++ b/.github/workflows/release-new-action-version.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Update the ${{ env.TAG_NAME }} tag id: update-major-tag - uses: actions/publish-action@v0.2.1 + uses: actions/publish-action@v0.3.0 with: source-tag: ${{ env.TAG_NAME }} slack-webhook: ${{ secrets.SLACK_WEBHOOK }} From 00e36f94d817ea235422592a23d468b262071bf4 Mon Sep 17 00:00:00 2001 From: Andrew Kim <6799182+andrewakim@users.noreply.github.com> Date: Thu, 15 Feb 2024 11:01:40 -0800 Subject: [PATCH 2/3] Minor fix to the migration readme --- docs/MIGRATION.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/MIGRATION.md b/docs/MIGRATION.md index b31dc26..1c656fc 100644 --- a/docs/MIGRATION.md +++ b/docs/MIGRATION.md @@ -189,7 +189,8 @@ jobs: - name: Create a File run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt - name: Upload Artifact - uses: actions/upload-artifact@v3 +- uses: actions/upload-artifact@v3 ++ uses: actions/upload-artifact@v4 with: - name: all-my-files + name: my-artifact-${{ matrix.runs-on }} From 16871d9e8cfcf27ff31822cac382bbb5450f1e1e Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Thu, 21 Mar 2024 13:59:27 +0100 Subject: [PATCH 3/3] v4.3.1: disable GHES check --- dist/merge/index.js | 8 ++------ dist/upload/index.js | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/dist/merge/index.js b/dist/merge/index.js index 64b7b97..d4574a7 100644 --- a/dist/merge/index.js +++ b/dist/merge/index.js @@ -3023,11 +3023,7 @@ function getResultsServiceUrl() { } exports.getResultsServiceUrl = getResultsServiceUrl; function isGhes() { - const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com'); - const hostname = ghUrl.hostname.trimEnd().toUpperCase(); - const isGitHubHost = hostname === 'GITHUB.COM'; - const isGheHost = hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST'); - return !isGitHubHost && !isGheHost; + return false; } exports.isGhes = isGhes; function getGitHubWorkspaceDir() { @@ -133673,4 +133669,4 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] /******/ module.exports = __webpack_exports__; /******/ /******/ })() -; \ No newline at end of file +; diff --git a/dist/upload/index.js b/dist/upload/index.js index 3b3b208..df5e07f 100644 --- a/dist/upload/index.js +++ b/dist/upload/index.js @@ -3023,11 +3023,7 @@ function getResultsServiceUrl() { } exports.getResultsServiceUrl = getResultsServiceUrl; function isGhes() { - const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com'); - const hostname = ghUrl.hostname.trimEnd().toUpperCase(); - const isGitHubHost = hostname === 'GITHUB.COM'; - const isGheHost = hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST'); - return !isGitHubHost && !isGheHost; + return false; } exports.isGhes = isGhes; function getGitHubWorkspaceDir() { @@ -131829,4 +131825,4 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] /******/ module.exports = __webpack_exports__; /******/ /******/ })() -; \ No newline at end of file +;