From 7cb73c8a5165564244a4d6ec842238de7a4b913b Mon Sep 17 00:00:00 2001 From: Niek Palm Date: Wed, 22 Dec 2021 09:59:34 +0100 Subject: [PATCH] fix: Dowload lambda see #1541 for details. (#1542) * fix: Update filter to match with new GitHub release assets. * fix: Update filter to match with new GitHub release assets. * Alter test data for pre-relases, add test case for empty response --- .../src/syncer/syncer.test.ts | 22 +- .../src/syncer/syncer.ts | 5 +- .../test/resources/github-list-releases.json | 6906 ++++++++++++++++- 3 files changed, 6793 insertions(+), 140 deletions(-) diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.test.ts b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.test.ts index 61ff725843..8bf377db08 100644 --- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.test.ts +++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.test.ts @@ -62,7 +62,7 @@ describe('Synchronize action distribution.', () => { mockS3.getObjectTagging.mockImplementation(() => { return { promise() { - return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.272.0.tar.gz' }] }); + return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.285.1.tar.gz' }] }); }, }; }); @@ -86,7 +86,7 @@ describe('Synchronize action distribution.', () => { mockS3.getObjectTagging.mockImplementation(() => { return { promise() { - return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.272.0.tar.gz' }] }); + return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.285.1.tar.gz' }] }); }, }; }); @@ -105,7 +105,7 @@ describe('Synchronize action distribution.', () => { mockS3.getObjectTagging.mockImplementation(() => { return { promise() { - return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.273.0.tar.gz' }] }); + return Promise.resolve({ TagSet: [{ Key: 'name', Value: 'actions-runner-linux-x64-2.286.0.tar.gz' }] }); }, }; }); @@ -136,7 +136,7 @@ describe('Synchronize action distribution.', () => { }); expect(mockS3.upload).toBeCalledTimes(1); const s3JsonBody = mockS3.upload.mock.calls[0][0]; - expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.272.0.tar.gz'); + expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.285.1.tar.gz'); }); it('Distribution should update to release if there are no pre-releases.', async () => { @@ -162,7 +162,7 @@ describe('Synchronize action distribution.', () => { }); expect(mockS3.upload).toBeCalledTimes(1); const s3JsonBody = mockS3.upload.mock.calls[0][0]; - expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.272.0.tar.gz'); + expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.285.1.tar.gz'); }); it('Distribution should update to prerelease.', async () => { @@ -183,7 +183,7 @@ describe('Synchronize action distribution.', () => { }); expect(mockS3.upload).toBeCalledTimes(1); const s3JsonBody = mockS3.upload.mock.calls[0][0]; - expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.273.0.tar.gz'); + expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.286.0.tar.gz'); }); it('Distribution should not update to prerelease if there is a newer release.', async () => { @@ -211,7 +211,7 @@ describe('Synchronize action distribution.', () => { }); expect(mockS3.upload).toBeCalledTimes(1); const s3JsonBody = mockS3.upload.mock.calls[0][0]; - expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.273.0.tar.gz'); + expect(s3JsonBody['Tagging']).toEqual('name=actions-runner-linux-x64-2.286.0.tar.gz'); }); it('No tag in S3, distribution should update.', async () => { @@ -273,6 +273,14 @@ describe('No release assets found.', () => { await expect(sync()).rejects.toThrow(errorMessage); }); + + it('Empty asset list.', async () => { + mockOctokit.repos.listReleases.mockImplementation(() => ({ + data: [], + })); + + await expect(sync()).rejects.toThrow(errorMessage); + }); }); describe('Invalid config', () => { diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.ts b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.ts index a36967e1cb..33b065c4e6 100644 --- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.ts +++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/syncer.ts @@ -57,10 +57,13 @@ async function getReleaseAsset( } else if (latestReleaseIndex != -1) { asset = assetsList.data[latestReleaseIndex]; } else { + logger.warn('Cannot find either a release or pre release.'); return undefined; } + + const releaseVersion = asset.tag_name.replace('v', ''); const assets = asset.assets?.filter((a: { name?: string }) => - a.name?.includes(`actions-runner-${runnerOs}-${runnerArch}-`), + a.name?.includes(`actions-runner-${runnerOs}-${runnerArch}-${releaseVersion}.`), ); return assets?.length === 1 ? { name: assets[0].name, downloadUrl: assets[0].browser_download_url } : undefined; diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json index 41762d9b87..e8a409645b 100644 --- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json +++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json @@ -1,20 +1,6447 @@ [ { - "url": "https://api.github.com/repos/actions/runner/releases/29868800", - "assets_url": "https://api.github.com/repos/actions/runner/releases/29868800/assets", - "upload_url": "https://uploads.github.com/repos/actions/runner/releases/29868800/assets{?name,label}", - "html_url": "https://github.com/actions/runner/releases/tag/v2.273.0", - "id": 29868800, - "node_id": "MDc6UmVsZWFzZTI5ODY4ODAw", - "tag_name": "v2.273.0", - "target_commitish": "1d68b0448c8b517e82c7eebbc4f226e6ed088e3d", - "name": "v2.273.0", + "url": "https://api.github.com/repos/actions/runner/releases/55761206", + "assets_url": "https://api.github.com/repos/actions/runner/releases/55761206/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/55761206/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.286.0", + "id": 55761206, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DUtk2", + "tag_name": "v2.286.0", + "target_commitish": "f1ddeb0d06bdbe3182a4f01c44ef622ec0c13437", + "name": "v2.286.0", + "draft": false, + "prerelease": true, + "created_at": "2021-12-21T15:51:03Z", + "published_at": "2021-12-21T16:09:06Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289847", + "id": 52289847, + "node_id": "RA_kwDOCvv-m84DHeE3", + "name": "actions-runner-linux-arm-2.286.0-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 31105800, + "download_count": 1, + "created_at": "2021-12-21T16:09:34Z", + "updated_at": "2021-12-21T16:09:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289872", + "id": 52289872, + "node_id": "RA_kwDOCvv-m84DHeFQ", + "name": "actions-runner-linux-arm-2.286.0-noruntime-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1724531, + "download_count": 1, + "created_at": "2021-12-21T16:09:58Z", + "updated_at": "2021-12-21T16:09:59Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0-noruntime-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289863", + "id": 52289863, + "node_id": "RA_kwDOCvv-m84DHeFH", + "name": "actions-runner-linux-arm-2.286.0-noruntime.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51256123, + "download_count": 5, + "created_at": "2021-12-21T16:09:50Z", + "updated_at": "2021-12-21T16:09:52Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0-noruntime.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289882", + "id": 52289882, + "node_id": "RA_kwDOCvv-m84DHeFa", + "name": "actions-runner-linux-arm-2.286.0-trimmedpackages.json", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1227, + "download_count": 10, + "created_at": "2021-12-21T16:10:03Z", + "updated_at": "2021-12-21T16:10:03Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0-trimmedpackages.json" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289819", + "id": 52289819, + "node_id": "RA_kwDOCvv-m84DHeEb", + "name": "actions-runner-linux-arm-2.286.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 80363680, + "download_count": 14, + "created_at": "2021-12-21T16:09:20Z", + "updated_at": "2021-12-21T16:09:23Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289852", + "id": 52289852, + "node_id": "RA_kwDOCvv-m84DHeE8", + "name": "actions-runner-linux-arm64-2.286.0-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 30853853, + "download_count": 37, + "created_at": "2021-12-21T16:09:37Z", + "updated_at": "2021-12-21T16:09:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289874", + "id": 52289874, + "node_id": "RA_kwDOCvv-m84DHeFS", + "name": "actions-runner-linux-arm64-2.286.0-noruntime-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1732347, + "download_count": 1, + "created_at": "2021-12-21T16:09:59Z", + "updated_at": "2021-12-21T16:10:00Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0-noruntime-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289867", + "id": 52289867, + "node_id": "RA_kwDOCvv-m84DHeFL", + "name": "actions-runner-linux-arm64-2.286.0-noruntime.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 55846172, + "download_count": 1, + "created_at": "2021-12-21T16:09:52Z", + "updated_at": "2021-12-21T16:09:55Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0-noruntime.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289883", + "id": 52289883, + "node_id": "RA_kwDOCvv-m84DHeFb", + "name": "actions-runner-linux-arm64-2.286.0-trimmedpackages.json", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1233, + "download_count": 2, + "created_at": "2021-12-21T16:10:03Z", + "updated_at": "2021-12-21T16:10:04Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0-trimmedpackages.json" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289826", + "id": 52289826, + "node_id": "RA_kwDOCvv-m84DHeEi", + "name": "actions-runner-linux-arm64-2.286.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84691579, + "download_count": 45, + "created_at": "2021-12-21T16:09:24Z", + "updated_at": "2021-12-21T16:09:27Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289838", + "id": 52289838, + "node_id": "RA_kwDOCvv-m84DHeEu", + "name": "actions-runner-linux-x64-2.286.0-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 33198505, + "download_count": 425, + "created_at": "2021-12-21T16:09:30Z", + "updated_at": "2021-12-21T16:09:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289869", + "id": 52289869, + "node_id": "RA_kwDOCvv-m84DHeFN", + "name": "actions-runner-linux-x64-2.286.0-noruntime-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1805884, + "download_count": 350, + "created_at": "2021-12-21T16:09:56Z", + "updated_at": "2021-12-21T16:09:57Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0-noruntime-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289859", + "id": 52289859, + "node_id": "RA_kwDOCvv-m84DHeFD", + "name": "actions-runner-linux-x64-2.286.0-noruntime.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 107991722, + "download_count": 350, + "created_at": "2021-12-21T16:09:42Z", + "updated_at": "2021-12-21T16:09:46Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0-noruntime.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289879", + "id": 52289879, + "node_id": "RA_kwDOCvv-m84DHeFX", + "name": "actions-runner-linux-x64-2.286.0-trimmedpackages.json", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1227, + "download_count": 204, + "created_at": "2021-12-21T16:10:01Z", + "updated_at": "2021-12-21T16:10:01Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0-trimmedpackages.json" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289804", + "id": 52289804, + "node_id": "RA_kwDOCvv-m84DHeEM", + "name": "actions-runner-linux-x64-2.286.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 139096669, + "download_count": 8087, + "created_at": "2021-12-21T16:09:11Z", + "updated_at": "2021-12-21T16:09:15Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289839", + "id": 52289839, + "node_id": "RA_kwDOCvv-m84DHeEv", + "name": "actions-runner-osx-x64-2.286.0-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 32539674, + "download_count": 2, + "created_at": "2021-12-21T16:09:32Z", + "updated_at": "2021-12-21T16:09:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289871", + "id": 52289871, + "node_id": "RA_kwDOCvv-m84DHeFP", + "name": "actions-runner-osx-x64-2.286.0-noruntime-noexternals.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1743946, + "download_count": 2, + "created_at": "2021-12-21T16:09:57Z", + "updated_at": "2021-12-21T16:09:58Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0-noruntime-noexternals.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289860", + "id": 52289860, + "node_id": "RA_kwDOCvv-m84DHeFE", + "name": "actions-runner-osx-x64-2.286.0-noruntime.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 50529663, + "download_count": 2, + "created_at": "2021-12-21T16:09:47Z", + "updated_at": "2021-12-21T16:09:49Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0-noruntime.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289880", + "id": 52289880, + "node_id": "RA_kwDOCvv-m84DHeFY", + "name": "actions-runner-osx-x64-2.286.0-trimmedpackages.json", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1221, + "download_count": 3, + "created_at": "2021-12-21T16:10:02Z", + "updated_at": "2021-12-21T16:10:02Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0-trimmedpackages.json" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289817", + "id": 52289817, + "node_id": "RA_kwDOCvv-m84DHeEZ", + "name": "actions-runner-osx-x64-2.286.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 80944106, + "download_count": 65, + "created_at": "2021-12-21T16:09:16Z", + "updated_at": "2021-12-21T16:09:20Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289835", + "id": 52289835, + "node_id": "RA_kwDOCvv-m84DHeEr", + "name": "actions-runner-win-x64-2.286.0-noexternals.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 34262484, + "download_count": 9, + "created_at": "2021-12-21T16:09:28Z", + "updated_at": "2021-12-21T16:09:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0-noexternals.zip" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289868", + "id": 52289868, + "node_id": "RA_kwDOCvv-m84DHeFM", + "name": "actions-runner-win-x64-2.286.0-noruntime-noexternals.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1906508, + "download_count": 2, + "created_at": "2021-12-21T16:09:55Z", + "updated_at": "2021-12-21T16:09:56Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0-noruntime-noexternals.zip" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289854", + "id": 52289854, + "node_id": "RA_kwDOCvv-m84DHeE-", + "name": "actions-runner-win-x64-2.286.0-noruntime.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 39605027, + "download_count": 2, + "created_at": "2021-12-21T16:09:39Z", + "updated_at": "2021-12-21T16:09:41Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0-noruntime.zip" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289877", + "id": 52289877, + "node_id": "RA_kwDOCvv-m84DHeFV", + "name": "actions-runner-win-x64-2.286.0-trimmedpackages.json", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 1241, + "download_count": 5, + "created_at": "2021-12-21T16:10:00Z", + "updated_at": "2021-12-21T16:10:00Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0-trimmedpackages.json" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/52289802", + "id": 52289802, + "node_id": "RA_kwDOCvv-m84DHeEK", + "name": "actions-runner-win-x64-2.286.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71681599, + "download_count": 57, + "created_at": "2021-12-21T16:09:06Z", + "updated_at": "2021-12-21T16:09:10Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.286.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.286.0", + "body": "## Features\n\n- Bump runtime to dotnet 6 (#1471)\n- Show service container logs on teardown (#1563)\n\n## Bugs\n\n- Add masks for multiline secrets from ::add-mask:: (#1521)\n- fix Log size and retention settings not work (#1507)\n- Refactor SelfUpdater adding L0 tests. (#1564)\n- Fix test failure: /bin/sleep on Macos 11 (Monterey) does not accept the suffix s. (#1472)\n\n\n## Misc\n\n- Update dependency check for dotnet 6. (#1551)\n- Produce trimmed down runner packages. (#1556)\n- Deleted extra background in github-praph.png, which is displayed in README.md (#1432)\n\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-win-x64-2.286.0.zip -OutFile actions-runner-win-x64-2.286.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.286.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-osx-x64-2.286.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.286.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-x64-2.286.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.286.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm64-2.286.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.286.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-arm-2.286.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.286.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.286.0.zip 137e03ccffe98d7d7f29170417c0c75133ef99574e673df7891f996119eef95d\n- actions-runner-osx-x64-2.286.0.tar.gz c780598891a964e44a4fc43e75cff122e1ab49929677d4adbce5c814b4d9fb60\n- actions-runner-linux-x64-2.286.0.tar.gz 855b84fe96fda84b22bb9efa2088652d785ed856a7af484b5f4c44f650d7eecf\n- actions-runner-linux-arm64-2.286.0.tar.gz 66082dd016da94b1935fedd038c3c8f0c8d7cb531bc57e8a549a373b9ecd1dd6\n- actions-runner-linux-arm-2.286.0.tar.gz 9cbbe8b09cee054cc6ce05c22fbb2513c01f3533d8cbe6c6cee92e71bb5d9f53\n\n- actions-runner-win-x64-2.286.0-noexternals.zip f82c2927e5524e58a1c28f53482f749ca0af4ec8502d3870b75ebce0fabd6955\n- actions-runner-osx-x64-2.286.0-noexternals.tar.gz 54b56bed8a4cfef32d75a29509f557ffe27f7198a921a52afcf48760227ab07d\n- actions-runner-linux-x64-2.286.0-noexternals.tar.gz e9aedd60efc847bcef323d2298709ddb1ea087e4490199321353ed63945b1ffe\n- actions-runner-linux-arm64-2.286.0-noexternals.tar.gz 47fff48b1fcd835de62a8043a9c2dd195c96ac8e2686a6bd31f96966ef4dfef1\n- actions-runner-linux-arm-2.286.0-noexternals.tar.gz befe0e6a507d5948ea2f98e3da6561c62109c1174e5543304b5f9b2d7a234ab6\n\n- actions-runner-win-x64-2.286.0-noruntime.zip 3792a09f3825e348212092c9d05495fb252b4406629e54e207c4838170d4477e\n- actions-runner-osx-x64-2.286.0-noruntime.tar.gz c0e6894184b93b077aa44c34ed4c3a216d0b0e36625d8298f190dff89afd56f3\n- actions-runner-linux-x64-2.286.0-noruntime.tar.gz 92d6f0627e75ca98d6752226591f2997c811d4b15dc2dd4096b7b3a99a436be9\n- actions-runner-linux-arm64-2.286.0-noruntime.tar.gz 27b36cecbc9a70c050587f223400170fbaf95cd17d0fe8eb6f6bb41dc13fb40d\n- actions-runner-linux-arm-2.286.0-noruntime.tar.gz 55fe04bc4ef3f01461ee16f477a6d87bf7f81abfc8b5914b1e486ed5edad7fa4\n\n- actions-runner-win-x64-2.286.0-noruntime-noexternals.zip 9145f820523950129082f5b79120b9310b0ba0308cb8c50f1dd9e9c27b29927f\n- actions-runner-osx-x64-2.286.0-noruntime-noexternals.tar.gz c756c2985f54105879fbe9f62931db36dc1e831e9b0ec02b854aa571f29cf82c\n- actions-runner-linux-x64-2.286.0-noruntime-noexternals.tar.gz f8ad417b95a4dd9b81c609ac4db466fb794aee05e42692ea21e5a5fc4c3a02b6\n- actions-runner-linux-arm64-2.286.0-noruntime-noexternals.tar.gz 66e74074ee30e8b19604deb9a8979e764a2edfede6183df3392bbca566e1c9e5\n- actions-runner-linux-arm-2.286.0-noruntime-noexternals.tar.gz ef74038fc108977fef9514ed8468eef429fa9b59686494537ebf8a967e5ac5ec" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/54726677", + "assets_url": "https://api.github.com/repos/actions/runner/releases/54726677/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/54726677/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.285.1", + "id": 54726677, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DQxAV", + "tag_name": "v2.285.1", + "target_commitish": "50afba61b40932c1084e31b5e9e7f5af325cc2ac", + "name": "v2.285.1", + "draft": false, + "prerelease": false, + "created_at": "2021-12-06T16:54:57Z", + "published_at": "2021-12-06T17:01:21Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/51141608", + "id": 51141608, + "node_id": "RA_kwDOCvv-m84DDFvo", + "name": "actions-runner-linux-arm-2.285.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84066955, + "download_count": 1291, + "created_at": "2021-12-06T17:01:35Z", + "updated_at": "2021-12-06T17:01:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-arm-2.285.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/51141620", + "id": 51141620, + "node_id": "RA_kwDOCvv-m84DDFv0", + "name": "actions-runner-linux-arm64-2.285.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 87004761, + "download_count": 6463, + "created_at": "2021-12-06T17:01:40Z", + "updated_at": "2021-12-06T17:01:43Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-arm64-2.285.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/51141598", + "id": 51141598, + "node_id": "RA_kwDOCvv-m84DDFve", + "name": "actions-runner-linux-x64-2.285.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 139235970, + "download_count": 326507, + "created_at": "2021-12-06T17:01:26Z", + "updated_at": "2021-12-06T17:01:30Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-x64-2.285.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/51141601", + "id": 51141601, + "node_id": "RA_kwDOCvv-m84DDFvh", + "name": "actions-runner-osx-x64-2.285.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 81274033, + "download_count": 6503, + "created_at": "2021-12-06T17:01:31Z", + "updated_at": "2021-12-06T17:01:35Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-osx-x64-2.285.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/51141571", + "id": 51141571, + "node_id": "RA_kwDOCvv-m84DDFvD", + "name": "actions-runner-win-x64-2.285.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 70635901, + "download_count": 12575, + "created_at": "2021-12-06T17:01:22Z", + "updated_at": "2021-12-06T17:01:25Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-win-x64-2.285.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.285.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.285.1", + "body": "## Features\n\n- n/a\n\n## Bugs\n\n- Revert node12 version due to fs.copyFileSync hang #1537\n\n\n## Misc\n\n- n/a\n\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-win-x64-2.285.1.zip -OutFile actions-runner-win-x64-2.285.1.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.285.1.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-osx-x64-2.285.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.285.1.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-x64-2.285.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.285.1.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-arm64-2.285.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.285.1.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.1/actions-runner-linux-arm-2.285.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.285.1.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.285.1.zip f79dbb6dfae9d42d0befb8cff30a145dd32c9b1df6ff280c9935c46884b001f3\n- actions-runner-osx-x64-2.285.1.tar.gz e46c1b305acaffab10a85d417cda804f4721707c85e5353ee3428b385642e6fd\n- actions-runner-linux-x64-2.285.1.tar.gz 5fd98e1009ed13783d17cc73f13ea9a55f21b45ced915ed610d00668b165d3b2\n- actions-runner-linux-arm64-2.285.1.tar.gz 8a0afe1ef136a07908de457f4017edabbce66524d56bd3d92179b3b3d2202917\n- actions-runner-linux-arm-2.285.1.tar.gz 90cd8e9dfbc4b165f8ae1f01ff3aba8f0db572d5cad3c96f1b3310510b4d0320" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/54255578", + "assets_url": "https://api.github.com/repos/actions/runner/releases/54255578/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/54255578/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.285.0", + "id": 54255578, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DO9_a", + "tag_name": "v2.285.0", + "target_commitish": "c75a77df668b81fa8d517fda2bb20b4f96dd9d6e", + "name": "v2.285.0", + "draft": false, + "prerelease": false, + "created_at": "2021-11-29T16:22:57Z", + "published_at": "2021-11-29T16:29:38Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/50569881", + "id": 50569881, + "node_id": "RA_kwDOCvv-m84DA6KZ", + "name": "actions-runner-linux-arm-2.285.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 85434159, + "download_count": 5630, + "created_at": "2021-11-29T16:29:50Z", + "updated_at": "2021-11-29T16:29:56Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-arm-2.285.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/50569885", + "id": 50569885, + "node_id": "RA_kwDOCvv-m84DA6Kd", + "name": "actions-runner-linux-arm64-2.285.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 88457344, + "download_count": 2831, + "created_at": "2021-11-29T16:29:56Z", + "updated_at": "2021-11-29T16:29:59Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-arm64-2.285.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/50569870", + "id": 50569870, + "node_id": "RA_kwDOCvv-m84DA6KO", + "name": "actions-runner-linux-x64-2.285.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 141674916, + "download_count": 147184, + "created_at": "2021-11-29T16:29:41Z", + "updated_at": "2021-11-29T16:29:47Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-x64-2.285.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/50569872", + "id": 50569872, + "node_id": "RA_kwDOCvv-m84DA6KQ", + "name": "actions-runner-osx-x64-2.285.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83695224, + "download_count": 2351, + "created_at": "2021-11-29T16:29:47Z", + "updated_at": "2021-11-29T16:29:50Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-osx-x64-2.285.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/50569865", + "id": 50569865, + "node_id": "RA_kwDOCvv-m84DA6KJ", + "name": "actions-runner-win-x64-2.285.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71157233, + "download_count": 6952, + "created_at": "2021-11-29T16:29:38Z", + "updated_at": "2021-11-29T16:29:40Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-win-x64-2.285.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.285.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.285.0", + "body": "## Features\n\n- Print source of secret in runs (Actions/Dependabot/None) #1411\n- Support node.js 16 and bump node.js 12 version #1439\n\n## Bugs\n\n- Fix a bug where local node action would crash in post-steps #1481\n\n\n## Misc\n\n- Add telemetry around runner update process. #1497\n- Improve telemetry to better diagnose runner configuration issues #1487\n- Clean up dependencies #1470\n\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-win-x64-2.285.0.zip -OutFile actions-runner-win-x64-2.285.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.285.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-osx-x64-2.285.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.285.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-x64-2.285.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.285.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-arm64-2.285.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.285.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.285.0/actions-runner-linux-arm-2.285.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.285.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.285.0.zip 1364cf5c84cfc5a42080e285d2747bdc522527bb148249e39073f2aa6dac8f17\n- actions-runner-osx-x64-2.285.0.tar.gz 8f1f66a5390ef34c5e6258037f58d6e269bcd953869b735153e6cf7d22131766\n- actions-runner-linux-x64-2.285.0.tar.gz 87e4f032839466086dc7828f2e044bfd8fff33d57a009a2df7a03c163ac0f87b\n- actions-runner-linux-arm64-2.285.0.tar.gz 742fed0e438a6e695f6284cdd9c448da5b38225ca9ad72002348e7d56322a837\n- actions-runner-linux-arm-2.285.0.tar.gz 12f06cb2815c44d87bab877c582d32efc79149ef0f20cb0c20db2312d2f33a39", + "reactions": { + "url": "https://api.github.com/repos/actions/runner/releases/54255578/reactions", + "total_count": 2, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 2, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/52457016", + "assets_url": "https://api.github.com/repos/actions/runner/releases/52457016/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/52457016/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.284.0", + "id": 52457016, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DIG44", + "tag_name": "v2.284.0", + "target_commitish": "9027c154d05776c16f6df6c0345bc9ec20440ebe", + "name": "v2.284.0", + "draft": false, + "prerelease": false, + "created_at": "2021-11-01T15:32:01Z", + "published_at": "2021-11-01T15:36:07Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/48361057", + "id": 48361057, + "node_id": "RA_kwDOCvv-m84C4e5h", + "name": "actions-runner-linux-arm-2.284.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54427027, + "download_count": 2903, + "created_at": "2021-11-01T15:36:13Z", + "updated_at": "2021-11-01T15:36:14Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-arm-2.284.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/48361060", + "id": 48361060, + "node_id": "RA_kwDOCvv-m84C4e5k", + "name": "actions-runner-linux-arm64-2.284.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54578473, + "download_count": 9554, + "created_at": "2021-11-01T15:36:15Z", + "updated_at": "2021-11-01T15:36:16Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-arm64-2.284.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/48361055", + "id": 48361055, + "node_id": "RA_kwDOCvv-m84C4e5f", + "name": "actions-runner-linux-x64-2.284.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73978578, + "download_count": 443538, + "created_at": "2021-11-01T15:36:09Z", + "updated_at": "2021-11-01T15:36:11Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-x64-2.284.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/48361056", + "id": 48361056, + "node_id": "RA_kwDOCvv-m84C4e5g", + "name": "actions-runner-osx-x64-2.284.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51148841, + "download_count": 8450, + "created_at": "2021-11-01T15:36:11Z", + "updated_at": "2021-11-01T15:36:13Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-osx-x64-2.284.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/48361054", + "id": 48361054, + "node_id": "RA_kwDOCvv-m84C4e5e", + "name": "actions-runner-win-x64-2.284.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45266654, + "download_count": 23283, + "created_at": "2021-11-01T15:36:08Z", + "updated_at": "2021-11-01T15:36:09Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-win-x64-2.284.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.284.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.284.0", + "body": "## Features\n\n- Expose GITHUB_REF_* as environment variable (#1314)\n- Add arch to runner context (#1372)\n- Support Conditional Steps in Composite Actions (#1438)\n- Log current runner version in terminal (#1441)\n\n## Bugs\n\n- Makes the user keychains available to the service (#847)\n- Use Actions Service health and api.github.com endpoints after connection failure on Actions Server and Hosted (#1385)\n- Fix an issue where nested local composite actions did not correctly register post steps (#1433)\n\n## Misc\n\n- Cleanup Older versions on MacOS now that we recreate node versions as needed (#1410)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-win-x64-2.284.0.zip -OutFile actions-runner-win-x64-2.284.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.284.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-osx-x64-2.284.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.284.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-x64-2.284.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.284.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-arm64-2.284.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.284.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.284.0/actions-runner-linux-arm-2.284.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.284.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.284.0.zip 7785341894d93b040aaef6656786f44b8fc52d8042f267705bf287939ce58f71\n- actions-runner-osx-x64-2.284.0.tar.gz 5f9dc650058151ddec7308d1fde89ab926af9dfcb5cf8137e6fe520baee8dbd3\n- actions-runner-linux-x64-2.284.0.tar.gz 1ddfd7bbd3f2b8f5684a7d88d6ecb6de3cb2281a2a359543a018cc6e177067fc\n- actions-runner-linux-arm64-2.284.0.tar.gz a7a4e31d93d5852710dbacbb5f024be581c337c1be92ba2c729bb81e756bd49b\n- actions-runner-linux-arm-2.284.0.tar.gz 2891eefcd2cd0cea33aef2261b628017d0879f69d66481c18350e2e50f3933f3", + "reactions": { + "url": "https://api.github.com/repos/actions/runner/releases/52457016/reactions", + "total_count": 9, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 7, + "confused": 0, + "heart": 1, + "rocket": 1, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/50766425", + "assets_url": "https://api.github.com/repos/actions/runner/releases/50766425/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/50766425/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.283.3", + "id": 50766425, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DBqJZ", + "tag_name": "v2.283.3", + "target_commitish": "844595b1b3f2b73aa4aa94025326fc0a8c0ca780", + "name": "v2.283.3", + "draft": false, + "prerelease": false, + "created_at": "2021-10-04T19:10:53Z", + "published_at": "2021-10-04T19:14:31Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/46226254", + "id": 46226254, + "node_id": "RA_kwDOCvv-m84CwVtO", + "name": "actions-runner-linux-arm-2.283.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54420843, + "download_count": 5079, + "created_at": "2021-10-04T19:14:40Z", + "updated_at": "2021-10-04T19:14:42Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-arm-2.283.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/46226256", + "id": 46226256, + "node_id": "RA_kwDOCvv-m84CwVtQ", + "name": "actions-runner-linux-arm64-2.283.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54574752, + "download_count": 9496, + "created_at": "2021-10-04T19:14:42Z", + "updated_at": "2021-10-04T19:14:45Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-arm64-2.283.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/46226248", + "id": 46226248, + "node_id": "RA_kwDOCvv-m84CwVtI", + "name": "actions-runner-linux-x64-2.283.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73971735, + "download_count": 238190, + "created_at": "2021-10-04T19:14:35Z", + "updated_at": "2021-10-04T19:14:37Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-x64-2.283.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/46226251", + "id": 46226251, + "node_id": "RA_kwDOCvv-m84CwVtL", + "name": "actions-runner-osx-x64-2.283.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51151504, + "download_count": 7920, + "created_at": "2021-10-04T19:14:38Z", + "updated_at": "2021-10-04T19:14:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-osx-x64-2.283.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/46226245", + "id": 46226245, + "node_id": "RA_kwDOCvv-m84CwVtF", + "name": "actions-runner-win-x64-2.283.3.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45261176, + "download_count": 32774, + "created_at": "2021-10-04T19:14:32Z", + "updated_at": "2021-10-04T19:14:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-win-x64-2.283.3.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.283.3", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.283.3", + "body": "## Features\n\n## Bugs\n\n- Fixed an issue where ephemeral runners did not restart after upgrading (#1396)\n\n## Misc\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-win-x64-2.283.3.zip -OutFile actions-runner-win-x64-2.283.3.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.283.3.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-osx-x64-2.283.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.283.3.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-x64-2.283.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.283.3.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-arm64-2.283.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.283.3.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.3/actions-runner-linux-arm-2.283.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.283.3.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.283.3.zip ce8f26affa95434dcbcb44b993f25d435fb3f66aad53048960f25ca426831d7f\n- actions-runner-osx-x64-2.283.3.tar.gz 74a840aac35a7ac3ba3f55f4aa7c241e67361f2ce29146b5fbf43e2db8be0df3\n- actions-runner-linux-x64-2.283.3.tar.gz 09aa49b96a8cbe75878dfcdc4f6d313e430d9f92b1f4625116b117a21caaba89\n- actions-runner-linux-arm64-2.283.3.tar.gz b2a0eeffdcd7b731298cf6fdb40e2a69d6c087310e812e8b2e34e643b6d3bfdf\n- actions-runner-linux-arm-2.283.3.tar.gz ae88feb1a2480be43b74a24b618f4da7e58d98a6ae54d1ad53ceedc265e27edf" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/50549094", + "assets_url": "https://api.github.com/repos/actions/runner/releases/50549094/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/50549094/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.283.2", + "id": 50549094, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84DA1Fm", + "tag_name": "v2.283.2", + "target_commitish": "4d908df4b2d8c51e079fac1c50bb8275645d06ad", + "name": "v2.283.2", + "draft": false, + "prerelease": false, + "created_at": "2021-09-30T12:58:13Z", + "published_at": "2021-09-30T13:02:27Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45945828", + "id": 45945828, + "node_id": "RA_kwDOCvv-m84CvRPk", + "name": "actions-runner-linux-arm-2.283.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54460570, + "download_count": 769, + "created_at": "2021-09-30T13:02:33Z", + "updated_at": "2021-09-30T13:02:35Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-arm-2.283.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45945838", + "id": 45945838, + "node_id": "RA_kwDOCvv-m84CvRPu", + "name": "actions-runner-linux-arm64-2.283.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54629739, + "download_count": 2672, + "created_at": "2021-09-30T13:02:35Z", + "updated_at": "2021-09-30T13:02:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-arm64-2.283.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45945813", + "id": 45945813, + "node_id": "RA_kwDOCvv-m84CvRPV", + "name": "actions-runner-linux-x64-2.283.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 74023191, + "download_count": 105006, + "created_at": "2021-09-30T13:02:30Z", + "updated_at": "2021-09-30T13:02:31Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-x64-2.283.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45945823", + "id": 45945823, + "node_id": "RA_kwDOCvv-m84CvRPf", + "name": "actions-runner-osx-x64-2.283.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51151420, + "download_count": 3262, + "created_at": "2021-09-30T13:02:32Z", + "updated_at": "2021-09-30T13:02:33Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-osx-x64-2.283.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45945807", + "id": 45945807, + "node_id": "RA_kwDOCvv-m84CvRPP", + "name": "actions-runner-win-x64-2.283.2.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45261182, + "download_count": 12712, + "created_at": "2021-09-30T13:02:28Z", + "updated_at": "2021-09-30T13:02:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-win-x64-2.283.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.283.2", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.283.2", + "body": "## Features\n\n## Bugs\n\n- Fixed an issue where ephemeral runners deregistered themselves when jobs were not successful (#1384)\n- Fixed an issue where you were not able to un-configure a runner that changed groups (#1359)\n- Disable `stop-commands` command using well known keywords as a token (#1371)\n\n## Misc\n\n- Don't retry 422 error codes when downloading actions (#1352)\n- Handle upgrade more smoothly on OSX (#1381)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-win-x64-2.283.2.zip -OutFile actions-runner-win-x64-2.283.2.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.283.2.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-osx-x64-2.283.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.283.2.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-x64-2.283.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.283.2.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-arm64-2.283.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.283.2.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.2/actions-runner-linux-arm-2.283.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.283.2.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.283.2.zip ad249c02785a2efc9e44ee4b57e31310dd4552ef0a700a2e38fcdff00d9d53b4\n- actions-runner-osx-x64-2.283.2.tar.gz d7d026b9bf1cb3f133cf53e79c71c0458a82b3f2bdb0a8859cd386ae18ee7c4a\n- actions-runner-linux-x64-2.283.2.tar.gz ef2b350068f7d581eb6840e3c399a42f9cb808f7ee9a0456f3ad97c84ccb2a9d\n- actions-runner-linux-arm64-2.283.2.tar.gz 990646bdced99679e752c1af9d26fdd8a93d319ce0e24c9a30c1c6b25e505ced\n- actions-runner-linux-arm-2.283.2.tar.gz 0c0c67e8a1dddccf74303d58c59477f2d233aa3f2b62e076e7f257f854ae1198" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/49856665", + "assets_url": "https://api.github.com/repos/actions/runner/releases/49856665/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/49856665/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.283.1", + "id": 49856665, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84C-MCZ", + "tag_name": "v2.283.1", + "target_commitish": "e6baf0d2755bc747d0eb58f24941e273d16c6524", + "name": "v2.283.1", + "draft": false, + "prerelease": false, + "created_at": "2021-09-20T14:02:11Z", + "published_at": "2021-09-20T14:06:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45204417", + "id": 45204417, + "node_id": "RA_kwDOCvv-m84CscPB", + "name": "actions-runner-linux-arm-2.283.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54455707, + "download_count": 1593, + "created_at": "2021-09-20T14:06:27Z", + "updated_at": "2021-09-20T14:06:28Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-arm-2.283.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45204419", + "id": 45204419, + "node_id": "RA_kwDOCvv-m84CscPD", + "name": "actions-runner-linux-arm64-2.283.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54627610, + "download_count": 8986, + "created_at": "2021-09-20T14:06:29Z", + "updated_at": "2021-09-20T14:06:31Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-arm64-2.283.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45204410", + "id": 45204410, + "node_id": "RA_kwDOCvv-m84CscO6", + "name": "actions-runner-linux-x64-2.283.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 74021144, + "download_count": 137483, + "created_at": "2021-09-20T14:06:21Z", + "updated_at": "2021-09-20T14:06:24Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-x64-2.283.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45204413", + "id": 45204413, + "node_id": "RA_kwDOCvv-m84CscO9", + "name": "actions-runner-osx-x64-2.283.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51148368, + "download_count": 5496, + "created_at": "2021-09-20T14:06:24Z", + "updated_at": "2021-09-20T14:06:26Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-osx-x64-2.283.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45204408", + "id": 45204408, + "node_id": "RA_kwDOCvv-m84CscO4", + "name": "actions-runner-win-x64-2.283.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45258628, + "download_count": 19397, + "created_at": "2021-09-20T14:06:19Z", + "updated_at": "2021-09-20T14:06:21Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-win-x64-2.283.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.283.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.283.1", + "body": "## Features\n\n- Collect more telemetry\n- Make `runner.name` available as a runner context variable\n- Add attempt number (`run_attempt`) to GitHub context \n- When using the `--ephemeral` flag, ensure that the runner cleans up local `.runner` and `.credentials` files after completion (#1337)\n\n## Misc\n\n- Improved network troubleshooting docs\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-win-x64-2.283.1.zip -OutFile actions-runner-win-x64-2.283.1.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.283.1.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-osx-x64-2.283.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.283.1.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-x64-2.283.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.283.1.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-arm64-2.283.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.283.1.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner-linux-arm-2.283.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.283.1.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.283.1.zip b7edc2fcd125f76e2e0b59c803123e264c50b0186e771ba55210e0d129cf2692\n- actions-runner-osx-x64-2.283.1.tar.gz c6f04c7c2c0f1706810fa15e5c0cd773310acbfe60dd4cd88459cbefa9a4bb75\n- actions-runner-linux-x64-2.283.1.tar.gz aebaaf7c00f467584b921f432f9f9fb50abf06e1b6b226545fbcbdaa65ed3031\n- actions-runner-linux-arm64-2.283.1.tar.gz 20c3d1e6ff03b0c5bc73c4ef7710e0048f509b19d5b789e26f468feafddb8eda\n- actions-runner-linux-arm-2.283.1.tar.gz 9adaf1a7d79c6e9ba1d35bf25e71a44313f486807b124cce4bd60b54b58166a9" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/49852980", + "assets_url": "https://api.github.com/repos/actions/runner/releases/49852980/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/49852980/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.283.0", + "id": 49852980, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84C-LI0", + "tag_name": "v2.283.0", + "target_commitish": "b03ca604ff702877ec49cfd3f06285d3e8d95400", + "name": "v2.283.0", + "draft": false, + "prerelease": false, + "created_at": "2021-09-20T13:15:16Z", + "published_at": "2021-09-20T13:18:58Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45200790", + "id": 45200790, + "node_id": "RA_kwDOCvv-m84CsbWW", + "name": "actions-runner-linux-arm-2.283.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54455092, + "download_count": 13, + "created_at": "2021-09-20T13:19:05Z", + "updated_at": "2021-09-20T13:19:06Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-arm-2.283.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45200793", + "id": 45200793, + "node_id": "RA_kwDOCvv-m84CsbWZ", + "name": "actions-runner-linux-arm64-2.283.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54629163, + "download_count": 62, + "created_at": "2021-09-20T13:19:07Z", + "updated_at": "2021-09-20T13:19:08Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-arm64-2.283.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45200784", + "id": 45200784, + "node_id": "RA_kwDOCvv-m84CsbWQ", + "name": "actions-runner-linux-x64-2.283.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 74020507, + "download_count": 295, + "created_at": "2021-09-20T13:19:01Z", + "updated_at": "2021-09-20T13:19:03Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-x64-2.283.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45200787", + "id": 45200787, + "node_id": "RA_kwDOCvv-m84CsbWT", + "name": "actions-runner-osx-x64-2.283.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51148230, + "download_count": 33, + "created_at": "2021-09-20T13:19:03Z", + "updated_at": "2021-09-20T13:19:04Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-osx-x64-2.283.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/45200781", + "id": 45200781, + "node_id": "RA_kwDOCvv-m84CsbWN", + "name": "actions-runner-win-x64-2.283.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45258523, + "download_count": 26, + "created_at": "2021-09-20T13:18:59Z", + "updated_at": "2021-09-20T13:19:00Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-win-x64-2.283.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.283.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.283.0", + "body": "## Features\r\n\r\n- Collect more telemetry\r\n- Make `runner.name` available as a runner context variable\r\n- Add attempt number (`run_attempt`) to GitHub context \r\n- When using the `--ephemeral` flag, ensure that the runner cleans up local `.runner` and `.credentials` files after completion (#1337)\r\n\r\n## Misc\r\n\r\n- Improved network troubleshooting docs\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-win-x64-2.283.0.zip -OutFile actions-runner-win-x64-2.283.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ;\r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.283.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-osx-x64-2.283.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.283.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-x64-2.283.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.283.0.tar.gz\r\n```\r\n\r\n## Linux arm64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-arm64-2.283.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.283.0.tar.gz\r\n```\r\n\r\n## Linux arm\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.283.0/actions-runner-linux-arm-2.283.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.283.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.283.0.zip 590c1f689673ae5dc6a2bcf55dd6fcb72e1d69510481e9304f057be88735f64a\r\n- actions-runner-osx-x64-2.283.0.tar.gz c0e15164dd883362fc0de0c654e8981980df194b99a07616167b299a28e5d6de\r\n- actions-runner-linux-x64-2.283.0.tar.gz 663f138c970383a18d4ee73516cf70c9b558bcf463266c9ae2374c66c0975685\r\n- actions-runner-linux-arm64-2.283.0.tar.gz 5ca6767213b182bffb563de2b1872e639d3c99653ed75f8edf439bae6d7eaf4b\r\n- actions-runner-linux-arm-2.283.0.tar.gz ade6dbcfb02c968dab455cc243b2ab5542245d02b347c5c4f5966fe021e9c03d" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/49621586", + "assets_url": "https://api.github.com/repos/actions/runner/releases/49621586/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/49621586/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.282.1", + "id": 49621586, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84C9SpS", + "tag_name": "v2.282.1", + "target_commitish": "f9ce10da6d3868467df742575df29fadd334e856", + "name": "v2.282.1", + "draft": false, + "prerelease": false, + "created_at": "2021-09-15T18:00:06Z", + "published_at": "2021-09-15T18:04:06Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44847089", + "id": 44847089, + "node_id": "RA_kwDOCvv-m84CrE_x", + "name": "actions-runner-linux-arm-2.282.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54456859, + "download_count": 258, + "created_at": "2021-09-15T18:04:14Z", + "updated_at": "2021-09-15T18:04:16Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-arm-2.282.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44847092", + "id": 44847092, + "node_id": "RA_kwDOCvv-m84CrE_0", + "name": "actions-runner-linux-arm64-2.282.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54622748, + "download_count": 1507, + "created_at": "2021-09-15T18:04:17Z", + "updated_at": "2021-09-15T18:04:19Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-arm64-2.282.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44847078", + "id": 44847078, + "node_id": "RA_kwDOCvv-m84CrE_m", + "name": "actions-runner-linux-x64-2.282.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 74017456, + "download_count": 53159, + "created_at": "2021-09-15T18:04:09Z", + "updated_at": "2021-09-15T18:04:11Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-x64-2.282.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44847083", + "id": 44847083, + "node_id": "RA_kwDOCvv-m84CrE_r", + "name": "actions-runner-osx-x64-2.282.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51145243, + "download_count": 2196, + "created_at": "2021-09-15T18:04:12Z", + "updated_at": "2021-09-15T18:04:14Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-osx-x64-2.282.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44847074", + "id": 44847074, + "node_id": "RA_kwDOCvv-m84CrE_i", + "name": "actions-runner-win-x64-2.282.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45256732, + "download_count": 7413, + "created_at": "2021-09-15T18:04:07Z", + "updated_at": "2021-09-15T18:04:09Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-win-x64-2.282.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.282.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.282.1", + "body": "## Features\n\nN/A\n\n## Bugs\n\n- Revert \"More resilient VssConnection client retries in JobServer\" (#1343)\n\n## Misc\n\nN/A\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-win-x64-2.282.1.zip -OutFile actions-runner-win-x64-2.282.1.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.282.1.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-osx-x64-2.282.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.282.1.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-x64-2.282.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.282.1.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-arm64-2.282.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.282.1.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.1/actions-runner-linux-arm-2.282.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.282.1.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.282.1.zip 402d02877a290e24027d82fbee63746aa755416b13b7685821432237e6a2799b\n- actions-runner-osx-x64-2.282.1.tar.gz 22908f9c84ef2e7b51e7660db12e8f7e601b7d912853db990b191defb0d59710\n- actions-runner-linux-x64-2.282.1.tar.gz 1bd2e9762890f7b6bfd73043c106c09519eb865c66797d9558b83178854a2435\n- actions-runner-linux-arm64-2.282.1.tar.gz f1c86b2453c412cb5cc23f2ec7140b376561b3bcb49a14549873f56fe4890691\n- actions-runner-linux-arm-2.282.1.tar.gz 8b28dec426e72b2e42e2f749da7977ccd9ac50fe5088dacb0e89179f26dbca6e" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/49476462", + "assets_url": "https://api.github.com/repos/actions/runner/releases/49476462/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/49476462/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.282.0", + "id": 49476462, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "RE_kwDOCvv-m84C8vNu", + "tag_name": "v2.282.0", + "target_commitish": "f954835f54cf0e699c5284f86238b6c4173eda4e", + "name": "v2.282.0", + "draft": false, + "prerelease": false, + "created_at": "2021-09-13T18:12:48Z", + "published_at": "2021-09-13T18:16:40Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44677628", + "id": 44677628, + "node_id": "RA_kwDOCvv-m84Cqbn8", + "name": "actions-runner-linux-arm-2.282.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54455143, + "download_count": 128, + "created_at": "2021-09-13T18:16:52Z", + "updated_at": "2021-09-13T18:16:54Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-arm-2.282.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44677631", + "id": 44677631, + "node_id": "RA_kwDOCvv-m84Cqbn_", + "name": "actions-runner-linux-arm64-2.282.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54625751, + "download_count": 548, + "created_at": "2021-09-13T18:16:54Z", + "updated_at": "2021-09-13T18:16:56Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-arm64-2.282.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44677622", + "id": 44677622, + "node_id": "RA_kwDOCvv-m84Cqbn2", + "name": "actions-runner-linux-x64-2.282.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 74015500, + "download_count": 15791, + "created_at": "2021-09-13T18:16:43Z", + "updated_at": "2021-09-13T18:16:48Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-x64-2.282.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44677626", + "id": 44677626, + "node_id": "RA_kwDOCvv-m84Cqbn6", + "name": "actions-runner-osx-x64-2.282.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51145604, + "download_count": 772, + "created_at": "2021-09-13T18:16:49Z", + "updated_at": "2021-09-13T18:16:51Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-osx-x64-2.282.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/44677617", + "id": 44677617, + "node_id": "RA_kwDOCvv-m84Cqbnx", + "name": "actions-runner-win-x64-2.282.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45258067, + "download_count": 2993, + "created_at": "2021-09-13T18:16:41Z", + "updated_at": "2021-09-13T18:16:43Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-win-x64-2.282.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.282.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.282.0", + "body": "## Features\n\n- Support the `--ephemeral` flag (#660)\n - This optional flag will configure the runner to only take one job, and let the service un-configure the runner after that job finishes.\n - Expect to see more info in the Github API documentation soon. We'll link to those docs directly as they become generally available!\n\n## Bugs\n\n- Fix a bug in `script/delete` wherein a repo with multiple runners would be unable to find the correct runner (#1268) (#1269)\n- Mitigate a race condition when requesting an OIDC `Id_token` (#1320)\n- Make client retries more resilient in JobServer (#1316)\n\n## Misc\n\n- Increase readability of colored console output (#1295) (#1319)\n- Add more network troubleshooting to the docs (#1325)\n- Bump [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7 (#1256)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-win-x64-2.282.0.zip -OutFile actions-runner-win-x64-2.282.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.282.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-osx-x64-2.282.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.282.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-x64-2.282.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.282.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-arm64-2.282.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.282.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.282.0/actions-runner-linux-arm-2.282.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.282.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.282.0.zip 947670e6999ef8aba6c4e6e728cce3bcf8be7ec8176122d22d07607b1dcabbb3\n- actions-runner-osx-x64-2.282.0.tar.gz 0f9397794838202426c47f619ae6fb8609041ca141ae1df10836a07c371a9baf\n- actions-runner-linux-x64-2.282.0.tar.gz 22ca06edeb02b13bf16bce4d65cc479c3bfde49a4e8a8e927ab650ffa789680c\n- actions-runner-linux-arm64-2.282.0.tar.gz 13688fdc7b4102d48cdb9f256c69b3561e2e198277bfcc026cfadbf09e6c3960\n- actions-runner-linux-arm-2.282.0.tar.gz d919535fd4869cf5994c155febd29e37cb3b6a3b1ad988f289bcb1aca37a3610", + "reactions": { + "url": "https://api.github.com/repos/actions/runner/releases/49476462/reactions", + "total_count": 18, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 7, + "confused": 0, + "heart": 7, + "rocket": 4, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/48846239", + "assets_url": "https://api.github.com/repos/actions/runner/releases/48846239/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/48846239/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.281.1", + "id": 48846239, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ4ODQ2MjM5", + "tag_name": "v2.281.1", + "target_commitish": "c8caf59bb7adaa87c4cf8f61372670d338a13f2d", + "name": "v2.281.1", + "draft": false, + "prerelease": false, + "created_at": "2021-09-01T20:29:49Z", + "published_at": "2021-09-01T20:33:26Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43821134", + "id": 43821134, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzODIxMTM0", + "name": "actions-runner-linux-arm-2.281.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54417524, + "download_count": 1233, + "created_at": "2021-09-01T20:33:32Z", + "updated_at": "2021-09-01T20:33:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-arm-2.281.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43821135", + "id": 43821135, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzODIxMTM1", + "name": "actions-runner-linux-arm64-2.281.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54584217, + "download_count": 3527, + "created_at": "2021-09-01T20:33:34Z", + "updated_at": "2021-09-01T20:33:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-arm64-2.281.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43821123", + "id": 43821123, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzODIxMTIz", + "name": "actions-runner-linux-x64-2.281.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73950147, + "download_count": 160565, + "created_at": "2021-09-01T20:33:29Z", + "updated_at": "2021-09-01T20:33:30Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-x64-2.281.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43821127", + "id": 43821127, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzODIxMTI3", + "name": "actions-runner-osx-x64-2.281.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51141768, + "download_count": 3761, + "created_at": "2021-09-01T20:33:31Z", + "updated_at": "2021-09-01T20:33:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-osx-x64-2.281.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43821119", + "id": 43821119, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzODIxMTE5", + "name": "actions-runner-win-x64-2.281.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45254615, + "download_count": 28725, + "created_at": "2021-09-01T20:33:27Z", + "updated_at": "2021-09-01T20:33:28Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-win-x64-2.281.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.281.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.281.1", + "body": "## Features\n\n- Allow setting default severity to \"notice\" (#1213)\n- Show More Step Information in composite Actions (#1279)\n\n## Bugs\n\n- Temporary fix for macOS runner upgrade crash loop. (#1304)\n- Fixed an issue where GHES runners fail to download public docker images (#1199)\n\n## Misc\n\n- Update error to say 'uninstall' not 'unconfigure' (#1179)\n- Typo fixed (#1289)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-win-x64-2.281.1.zip -OutFile actions-runner-win-x64-2.281.1.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.281.1.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-osx-x64-2.281.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.281.1.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-x64-2.281.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.281.1.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-arm64-2.281.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.281.1.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.1/actions-runner-linux-arm-2.281.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.281.1.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.281.1.zip b8dccfef39c5d696443d98edd1ee57881075066bb62adef0a344fcb11bd19f1b\n- actions-runner-osx-x64-2.281.1.tar.gz c10bfd8f01adfdda5f3e108547eacc862cdb6905e773ecb3a1717d1804756579\n- actions-runner-linux-x64-2.281.1.tar.gz 04f6c17235d4b29fc1392d5fae63919a96e7d903d67790f81cffdd69c58cb563\n- actions-runner-linux-arm64-2.281.1.tar.gz f424d953a4df285839e8bd73474c3f92307a5605e6d473313a130b30550d55bd\n- actions-runner-linux-arm-2.281.1.tar.gz 3d0b11887e5bc4a1ceca824ed62b3a8e5a832884228fb9fc6278e8fbcec9b2bd" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/48689739", + "assets_url": "https://api.github.com/repos/actions/runner/releases/48689739/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/48689739/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.281.0", + "id": 48689739, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ4Njg5NzM5", + "tag_name": "v2.281.0", + "target_commitish": "b6aa01fabcad04dd03a5e6d6e780fafcd634bbd9", + "name": "v2.281.0", + "draft": false, + "prerelease": false, + "created_at": "2021-08-30T17:27:28Z", + "published_at": "2021-08-30T17:31:17Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43636108", + "id": 43636108, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzNjM2MTA4", + "name": "actions-runner-linux-arm-2.281.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54406396, + "download_count": 26, + "created_at": "2021-08-30T17:31:26Z", + "updated_at": "2021-08-30T17:31:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-arm-2.281.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43636114", + "id": 43636114, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzNjM2MTE0", + "name": "actions-runner-linux-arm64-2.281.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54587101, + "download_count": 319, + "created_at": "2021-08-30T17:31:30Z", + "updated_at": "2021-08-30T17:31:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-arm64-2.281.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43636102", + "id": 43636102, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzNjM2MTAy", + "name": "actions-runner-linux-x64-2.281.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73973644, + "download_count": 9470, + "created_at": "2021-08-30T17:31:21Z", + "updated_at": "2021-08-30T17:31:23Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-x64-2.281.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43636104", + "id": 43636104, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzNjM2MTA0", + "name": "actions-runner-osx-x64-2.281.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51142642, + "download_count": 320, + "created_at": "2021-08-30T17:31:24Z", + "updated_at": "2021-08-30T17:31:26Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-osx-x64-2.281.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/43636094", + "id": 43636094, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQzNjM2MDk0", + "name": "actions-runner-win-x64-2.281.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45255064, + "download_count": 1900, + "created_at": "2021-08-30T17:31:18Z", + "updated_at": "2021-08-30T17:31:20Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-win-x64-2.281.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.281.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.281.0", + "body": "## Features\n\n## Bugs\n\n- Fixed an issue where GHES runners fail to download public docker images (#1199)\n\n## Misc\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-win-x64-2.281.0.zip -OutFile actions-runner-win-x64-2.281.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.281.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-osx-x64-2.281.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.281.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-x64-2.281.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.281.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-arm64-2.281.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.281.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.281.0/actions-runner-linux-arm-2.281.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.281.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.281.0.zip ce4517d129af415348295ed8f41204bef11f47d7cf9aab2a50f96ef19c718da3\n- actions-runner-osx-x64-2.281.0.tar.gz c2d0eafc1b206b8205b3fc8d435acdb68b84a03a0bd5248214fc8030dc462d4f\n- actions-runner-linux-x64-2.281.0.tar.gz 1f57c3e897bb65dd11966c556f873159960933eab397ee5b6300409148a0f11c\n- actions-runner-linux-arm64-2.281.0.tar.gz 16cc00483eef563cc8574711c3316c606690c6c2e18ee41fb9a1d0aa6bfe4d6e\n- actions-runner-linux-arm-2.281.0.tar.gz 65287af3dc66225e05ca0b183a0c2157f1a601d2dc10bc03be86abb51d8b56c4" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/48114604", + "assets_url": "https://api.github.com/repos/actions/runner/releases/48114604/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/48114604/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.280.3", + "id": 48114604, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ4MTE0NjA0", + "tag_name": "v2.280.3", + "target_commitish": "409920e9f03bd38fe6e58807f069394993ce32e4", + "name": "v2.280.3", + "draft": false, + "prerelease": false, + "created_at": "2021-08-19T13:10:58Z", + "published_at": "2021-08-19T13:26:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42813890", + "id": 42813890, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyODEzODkw", + "name": "actions-runner-linux-arm-2.280.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54398094, + "download_count": 379, + "created_at": "2021-08-19T13:26:34Z", + "updated_at": "2021-08-19T13:26:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-arm-2.280.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42813894", + "id": 42813894, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyODEzODk0", + "name": "actions-runner-linux-arm64-2.280.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54585207, + "download_count": 4309, + "created_at": "2021-08-19T13:26:36Z", + "updated_at": "2021-08-19T13:26:37Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-arm64-2.280.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42813884", + "id": 42813884, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyODEzODg0", + "name": "actions-runner-linux-x64-2.280.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73977257, + "download_count": 229201, + "created_at": "2021-08-19T13:26:30Z", + "updated_at": "2021-08-19T13:26:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-x64-2.280.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42813887", + "id": 42813887, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyODEzODg3", + "name": "actions-runner-osx-x64-2.280.3.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51141762, + "download_count": 3715, + "created_at": "2021-08-19T13:26:33Z", + "updated_at": "2021-08-19T13:26:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-osx-x64-2.280.3.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42813883", + "id": 42813883, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyODEzODgz", + "name": "actions-runner-win-x64-2.280.3.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45254142, + "download_count": 20708, + "created_at": "2021-08-19T13:26:29Z", + "updated_at": "2021-08-19T13:26:30Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-win-x64-2.280.3.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.280.3", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.280.3", + "body": "## Features\n\n## Bugs\n\n- Fixed an issue where composite steps would not run on `failure()` or `always()` when the job failed (#1273)\n\n## Misc\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-win-x64-2.280.3.zip -OutFile actions-runner-win-x64-2.280.3.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.280.3.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-osx-x64-2.280.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.280.3.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-x64-2.280.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.280.3.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-arm64-2.280.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.280.3.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.3/actions-runner-linux-arm-2.280.3.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.280.3.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.280.3.zip d45e44d3266539c92293de235b6eea3cb2dc21fe3e5b98fbf3cfa97d38bdad9f\n- actions-runner-osx-x64-2.280.3.tar.gz 16683d7f180fe2255acb8b5f74142143f8ae9c894f61c51bf0c868199916e8fd\n- actions-runner-linux-x64-2.280.3.tar.gz 69dc323312e3c5547ba1e1cc46c127e2ca8ee7d7037e17ee6965ef6dac3c142b\n- actions-runner-linux-arm64-2.280.3.tar.gz 6b838e76a3ee3ead883e1b9b395e2044af473ccf78ed3ae86e94c8801a1b620b\n- actions-runner-linux-arm-2.280.3.tar.gz 025cc11af4974ce80f7f1c2af2c55a44c055c0c983d41361e37549e05a662889" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/47763579", + "assets_url": "https://api.github.com/repos/actions/runner/releases/47763579/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/47763579/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.280.2", + "id": 47763579, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ3NzYzNTc5", + "tag_name": "v2.280.2", + "target_commitish": "ccafb91bfbcee5bed530aa82a1a0381b2c8f260c", + "name": "v2.280.2", + "draft": false, + "prerelease": false, + "created_at": "2021-08-12T17:39:28Z", + "published_at": "2021-08-12T17:43:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42308746", + "id": 42308746, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyMzA4NzQ2", + "name": "actions-runner-linux-arm-2.280.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54398155, + "download_count": 177, + "created_at": "2021-08-12T17:43:30Z", + "updated_at": "2021-08-12T17:43:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-arm-2.280.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42308747", + "id": 42308747, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyMzA4NzQ3", + "name": "actions-runner-linux-arm64-2.280.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54586843, + "download_count": 1856, + "created_at": "2021-08-12T17:43:33Z", + "updated_at": "2021-08-12T17:43:35Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-arm64-2.280.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42308729", + "id": 42308729, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyMzA4NzI5", + "name": "actions-runner-linux-x64-2.280.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73973789, + "download_count": 52005, + "created_at": "2021-08-12T17:43:22Z", + "updated_at": "2021-08-12T17:43:27Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-x64-2.280.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42308738", + "id": 42308738, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyMzA4NzM4", + "name": "actions-runner-osx-x64-2.280.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51141692, + "download_count": 2193, + "created_at": "2021-08-12T17:43:27Z", + "updated_at": "2021-08-12T17:43:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-osx-x64-2.280.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/42308728", + "id": 42308728, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQyMzA4NzI4", + "name": "actions-runner-win-x64-2.280.2.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45253879, + "download_count": 13531, + "created_at": "2021-08-12T17:43:19Z", + "updated_at": "2021-08-12T17:43:22Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-win-x64-2.280.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.280.2", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.280.2", + "body": "## Features\n\n## Bugs\n\n- Send Path when resolving actions so we can correctly validate Policy for Composite Actions (#1250)\n\n## Misc\n\n- Allows flags instead of parameters when configuring the runner (#1220)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-win-x64-2.280.2.zip -OutFile actions-runner-win-x64-2.280.2.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.280.2.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-osx-x64-2.280.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.280.2.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-x64-2.280.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.280.2.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-arm64-2.280.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.280.2.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.2/actions-runner-linux-arm-2.280.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.280.2.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.280.2.zip 0ccb26b3e077d428f1f8c5183a0bab3c3186a654b47017ba1c904c7d972de1ac\n- actions-runner-osx-x64-2.280.2.tar.gz 5fc7d22d85d04463bb194f6234f0e5d444a57d7f1729a12aa79cb595d0f96aee\n- actions-runner-linux-x64-2.280.2.tar.gz 91eb11e971702bdec9d0298b265c98a6d7b3a508da9fa1354bb1c64e838f0809\n- actions-runner-linux-arm64-2.280.2.tar.gz e7880e27974681fe4a8660ecc1f98ea45e38722b2992036023fcd9f00dfc8411\n- actions-runner-linux-arm-2.280.2.tar.gz be7e42a3428ba590b3060557f8761f61f4667cd8138640ca019e6acb55f83b3c" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/47311355", + "assets_url": "https://api.github.com/repos/actions/runner/releases/47311355/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/47311355/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.280.1", + "id": 47311355, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ3MzExMzU1", + "tag_name": "v2.280.1", + "target_commitish": "4d17f77f5e8d552740a91ce2868fd05ff5a0dfee", + "name": "v2.280.1", + "draft": false, + "prerelease": false, + "created_at": "2021-08-04T17:34:08Z", + "published_at": "2021-08-04T17:38:26Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41751525", + "id": 41751525, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNzUxNTI1", + "name": "actions-runner-linux-arm-2.280.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54397811, + "download_count": 260, + "created_at": "2021-08-04T17:38:34Z", + "updated_at": "2021-08-04T17:38:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-arm-2.280.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41751527", + "id": 41751527, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNzUxNTI3", + "name": "actions-runner-linux-arm64-2.280.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54586466, + "download_count": 3778, + "created_at": "2021-08-04T17:38:37Z", + "updated_at": "2021-08-04T17:38:38Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-arm64-2.280.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41751519", + "id": 41751519, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNzUxNTE5", + "name": "actions-runner-linux-x64-2.280.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73974056, + "download_count": 60847, + "created_at": "2021-08-04T17:38:29Z", + "updated_at": "2021-08-04T17:38:31Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-x64-2.280.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41751521", + "id": 41751521, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNzUxNTIx", + "name": "actions-runner-osx-x64-2.280.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51141417, + "download_count": 3857, + "created_at": "2021-08-04T17:38:32Z", + "updated_at": "2021-08-04T17:38:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-osx-x64-2.280.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41751514", + "id": 41751514, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNzUxNTE0", + "name": "actions-runner-win-x64-2.280.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45253888, + "download_count": 9259, + "created_at": "2021-08-04T17:38:27Z", + "updated_at": "2021-08-04T17:38:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-win-x64-2.280.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.280.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.280.1", + "body": "## Features\r\n\r\n## Bugs\r\n\r\n- Fixed a bug where composite actions did not respect `continue-on-error` (#1238)\r\n- Fixed a bug where composite actions post steps did not have the correct step context (#1243)\r\n\r\n\r\n## Misc\r\n\r\n- Correctly finish Job when worker crashes with IO Exceptions (#1239)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-win-x64-2.280.1.zip -OutFile actions-runner-win-x64-2.280.1.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.280.1.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-osx-x64-2.280.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.280.1.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-x64-2.280.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.280.1.tar.gz\r\n```\r\n\r\n## Linux arm64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-arm64-2.280.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.280.1.tar.gz\r\n```\r\n\r\n## Linux arm\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.1/actions-runner-linux-arm-2.280.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.280.1.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.280.1.zip b1afaeea51a10eac6ec897fd57e123858b5f620cf40ed6715fac34686e377b6e\r\n- actions-runner-osx-x64-2.280.1.tar.gz bd34eb125dfcf5daa78cafa5441ca11f05248a5878d0b914ca93685fb2c2a95b\r\n- actions-runner-linux-x64-2.280.1.tar.gz 24a8857b7f124f7c1852b030686a2f2205ec5d59ed7e2c0635a2c321d2b9fde6\r\n- actions-runner-linux-arm64-2.280.1.tar.gz 46a210da9c79ad964949091c58fd6c0be3fabd56b707b1bf743749822c3d45ec\r\n- actions-runner-linux-arm-2.280.1.tar.gz 59a8296d6b86662d912c128556291b301cb03ef33cfa025fa0365c9a4905f6f6" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/47235650", + "assets_url": "https://api.github.com/repos/actions/runner/releases/47235650/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/47235650/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.280.0", + "id": 47235650, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ3MjM1NjUw", + "tag_name": "v2.280.0", + "target_commitish": "ed15c5389b7c17f5b83cc542f06ee10d8a0a3f5d", + "name": "v2.280.0", + "draft": false, + "prerelease": true, + "created_at": "2021-08-03T15:30:11Z", + "published_at": "2021-08-03T15:34:17Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41655991", + "id": 41655991, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNjU1OTkx", + "name": "actions-runner-linux-arm-2.280.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54400775, + "download_count": 22, + "created_at": "2021-08-03T15:34:23Z", + "updated_at": "2021-08-03T15:34:24Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-arm-2.280.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41655993", + "id": 41655993, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNjU1OTkz", + "name": "actions-runner-linux-arm64-2.280.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54583854, + "download_count": 184, + "created_at": "2021-08-03T15:34:25Z", + "updated_at": "2021-08-03T15:34:26Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-arm64-2.280.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41655980", + "id": 41655980, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNjU1OTgw", + "name": "actions-runner-linux-x64-2.280.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73974627, + "download_count": 2849, + "created_at": "2021-08-03T15:34:19Z", + "updated_at": "2021-08-03T15:34:21Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-x64-2.280.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41655988", + "id": 41655988, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNjU1OTg4", + "name": "actions-runner-osx-x64-2.280.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51138951, + "download_count": 163, + "created_at": "2021-08-03T15:34:21Z", + "updated_at": "2021-08-03T15:34:22Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-osx-x64-2.280.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/41655977", + "id": 41655977, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQxNjU1OTc3", + "name": "actions-runner-win-x64-2.280.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45251928, + "download_count": 173, + "created_at": "2021-08-03T15:34:17Z", + "updated_at": "2021-08-03T15:34:18Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-win-x64-2.280.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.280.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.280.0", + "body": "## Features\r\n\r\n- Adds support for composite actions if the server supports it (#1222)\r\n- Adds `generateIdTokenUri` to env variables for actions (#1234)\r\n\r\n## Bugs\r\n\r\n- Prefer higher `libicu` versions in `installDependencies.sh` (#1228)\r\n\r\n\r\n## Misc\r\n\r\n- Send step telemetry to server on JobCompletion (#1229)\r\n- Print out the resolved SHA for each downloaded action (#1233)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-win-x64-2.280.0.zip -OutFile actions-runner-win-x64-2.280.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.280.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-osx-x64-2.280.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.280.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-x64-2.280.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.280.0.tar.gz\r\n```\r\n\r\n## Linux arm64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-arm64-2.280.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.280.0.tar.gz\r\n```\r\n\r\n## Linux arm\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.280.0/actions-runner-linux-arm-2.280.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.280.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.280.0.zip d7a535e6d132296e0b1eb63548189c6d59d04c5c565ba9ffbeb78c07749bf3f2\r\n- actions-runner-osx-x64-2.280.0.tar.gz fdb221c5a6876c20001407ab5cee551621348c765de4926e08a169ee3c30e583\r\n- actions-runner-linux-x64-2.280.0.tar.gz 129f99f20ab04aa8ea67e5fd3a8fc82d5bee3bda7050b9f95e2d5d2ac34496c9\r\n- actions-runner-linux-arm64-2.280.0.tar.gz 6a2dae60e54e6de945089c1709161c6b1ea36f15a60e19c3355c480b8a0d95c7\r\n- actions-runner-linux-arm-2.280.0.tar.gz 2a9443aba2119a0b803580882e87cc1a55e9942a4287cd02dbef64cf83cce53d" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/46553187", + "assets_url": "https://api.github.com/repos/actions/runner/releases/46553187/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/46553187/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.279.0", + "id": 46553187, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ2NTUzMTg3", + "tag_name": "v2.279.0", + "target_commitish": "6b75179ec79e2041b3b5b4e9206b73db2d206aac", + "name": "v2.279.0", + "draft": false, + "prerelease": false, + "created_at": "2021-07-21T15:53:52Z", + "published_at": "2021-07-21T15:58:15Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/40756060", + "id": 40756060, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzU2MDYw", + "name": "actions-runner-linux-arm-2.279.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54396704, + "download_count": 5081, + "created_at": "2021-07-21T15:58:23Z", + "updated_at": "2021-07-21T15:58:25Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-arm-2.279.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/40756061", + "id": 40756061, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzU2MDYx", + "name": "actions-runner-linux-arm64-2.279.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54567880, + "download_count": 10784, + "created_at": "2021-07-21T15:58:25Z", + "updated_at": "2021-07-21T15:58:29Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-arm64-2.279.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/40756052", + "id": 40756052, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzU2MDUy", + "name": "actions-runner-linux-x64-2.279.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73969693, + "download_count": 146116, + "created_at": "2021-07-21T15:58:17Z", + "updated_at": "2021-07-21T15:58:20Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-x64-2.279.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/40756055", + "id": 40756055, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzU2MDU1", + "name": "actions-runner-osx-x64-2.279.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51128119, + "download_count": 12677, + "created_at": "2021-07-21T15:58:21Z", + "updated_at": "2021-07-21T15:58:22Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-osx-x64-2.279.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/40756049", + "id": 40756049, + "node_id": "MDEyOlJlbGVhc2VBc3NldDQwNzU2MDQ5", + "name": "actions-runner-win-x64-2.279.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45237459, + "download_count": 16884, + "created_at": "2021-07-21T15:58:15Z", + "updated_at": "2021-07-21T15:58:17Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-win-x64-2.279.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.279.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.279.0", + "body": "## Features\n\n- Add Job Message size to both Worker and Listener logs for debugging (#1100)\n- Add notice annotation level (in addition to error and warning) and support more annotation fields (#1175)\n\n## Bugs\n\n- Remove the `NODE_ICU_DATA` environment variable that may cause conflicts with node within the runner. (#1060)\n- Handle cancelled jobs better to prevent orphaned processes (#1083)\n- No longer fail to remove a `systemd` service with `svc.sh uninstall` if the script had previously been run from the wrong location (#1135)\n- Send `SIGKILL` to the runner listener if it doesn't respond to `SIGINT` for 30 seconds\n- Match runner group name when configuring even if there's only a single runner group \n\n\n## Misc\n- Fix automation links in documentation (#1089)\n- Improve developer and first contributor experience by improving tooling for VS Code (#1101, #1117, #1119, #1132)\n- Fix bug where linux users are not able to run remove-svc.sh as root (#1127)\n\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-win-x64-2.279.0.zip -OutFile actions-runner-win-x64-2.279.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.279.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-osx-x64-2.279.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.279.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-x64-2.279.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.279.0.tar.gz\n```\n\n## Linux arm64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-arm64-2.279.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.279.0.tar.gz\n```\n\n## Linux arm\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.279.0/actions-runner-linux-arm-2.279.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.279.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.279.0.zip b5d6eda442dde819333a05519424947d74575444e167ea5fc6756f08d4b50e5d\n- actions-runner-osx-x64-2.279.0.tar.gz 5602dede1578d9758ff47e4a10c60c454ca6ea2fe1c19dc21e5187cc765671cb\n- actions-runner-linux-x64-2.279.0.tar.gz 50d21db4831afe4998332113b9facc3a31188f2d0c7ed258abf6a0b67674413a\n- actions-runner-linux-arm64-2.279.0.tar.gz f2321ca98452e94d5f56c380d3b72dab524e2c4934b1570c6a83f90e23401a8e\n- actions-runner-linux-arm-2.279.0.tar.gz 0c756ae57ccf19062e1a16d30f72e3e769dcfb93ad83ed27f746f742def4f938", + "reactions": { + "url": "https://api.github.com/repos/actions/runner/releases/46553187/reactions", + "total_count": 2, + "+1": 2, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/41552748", + "assets_url": "https://api.github.com/repos/actions/runner/releases/41552748/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/41552748/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.278.0", + "id": 41552748, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQxNTUyNzQ4", + "tag_name": "v2.278.0", + "target_commitish": "62d926efce35d3ea16d7624a25aaa5b300737def", + "name": "v2.278.0", + "draft": false, + "prerelease": false, + "created_at": "2021-04-16T15:53:14Z", + "published_at": "2021-04-16T15:57:03Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/35187610", + "id": 35187610, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg3NjEw", + "name": "actions-runner-linux-arm-2.278.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54422761, + "download_count": 4088, + "created_at": "2021-04-16T15:57:09Z", + "updated_at": "2021-04-16T15:57:10Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-arm-2.278.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/35187629", + "id": 35187629, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg3NjI5", + "name": "actions-runner-linux-arm64-2.278.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54595713, + "download_count": 18341, + "created_at": "2021-04-16T15:57:10Z", + "updated_at": "2021-04-16T15:57:12Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-arm64-2.278.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/35187579", + "id": 35187579, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg3NTc5", + "name": "actions-runner-linux-x64-2.278.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73982663, + "download_count": 895743, + "created_at": "2021-04-16T15:57:05Z", + "updated_at": "2021-04-16T15:57:07Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-x64-2.278.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/35187595", + "id": 35187595, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg3NTk1", + "name": "actions-runner-osx-x64-2.278.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51127561, + "download_count": 12170, + "created_at": "2021-04-16T15:57:07Z", + "updated_at": "2021-04-16T15:57:08Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-osx-x64-2.278.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/35187559", + "id": 35187559, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MTg3NTU5", + "name": "actions-runner-win-x64-2.278.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45236327, + "download_count": 110099, + "created_at": "2021-04-16T15:57:03Z", + "updated_at": "2021-04-16T15:57:04Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-win-x64-2.278.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.278.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.278.0", + "body": "## Features\r\n\r\n- Use GITHUB_TOKEN for ghcr.io containers if credentials are not provided (#990)\r\n\r\n## Bugs\r\n\r\n- Do not trucate error message from template evaluation (#1038)\r\n- Make FileShare ReadWrite (#1033)\r\n- Mask secrets with double-quotes when passed to docker command line (#1002)\r\n- Delete script files before replacing during update (#984)\r\n\r\n\r\n## Misc\r\n\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-win-x64-2.278.0.zip -OutFile actions-runner-win-x64-2.278.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.278.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-osx-x64-2.278.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.278.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-x64-2.278.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.278.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-arm64-2.278.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.278.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.278.0/actions-runner-linux-arm-2.278.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.278.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.278.0.zip 50c51ea8e47b48a79e5bb68df36b98de5c91dbf5b4f09a447883e98bdf01ba45\r\n- actions-runner-osx-x64-2.278.0.tar.gz 345a5a5b7d1b6849441de0ecb13d2d84a445d080220b4b0e9ca3e03e3b9fb6b2\r\n- actions-runner-linux-x64-2.278.0.tar.gz 1d01e521c1fc3e480498709746d0dcbef1845294bd94d4094e0abfbd9d0ef8b1\r\n- actions-runner-linux-arm64-2.278.0.tar.gz 69daadcbc7a9d50437f005cb6d74870dcc645a9c3a69c14d5235993bbab46f50\r\n- actions-runner-linux-arm-2.278.0.tar.gz 1a60189283f4bd180b63c5bdc0897d7cbb598857c30a58186d0c132f81ac042f" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/37821813", + "assets_url": "https://api.github.com/repos/actions/runner/releases/37821813/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/37821813/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.277.1", + "id": 37821813, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM3ODIxODEz", + "tag_name": "v2.277.1", + "target_commitish": "183a3dd9a0d4d51feddc5fe9fa6c3b5f8b08343d", + "name": "v2.277.1", + "draft": false, + "prerelease": false, + "created_at": "2021-02-09T19:48:54Z", + "published_at": "2021-02-09T19:53:04Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31864868", + "id": 31864868, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODY0ODY4", + "name": "actions-runner-linux-arm-2.277.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54389145, + "download_count": 10359, + "created_at": "2021-02-09T19:53:12Z", + "updated_at": "2021-02-09T19:53:14Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31864869", + "id": 31864869, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODY0ODY5", + "name": "actions-runner-linux-arm64-2.277.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54564641, + "download_count": 22644, + "created_at": "2021-02-09T19:53:14Z", + "updated_at": "2021-02-09T19:53:16Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/39962516", + "id": 39962516, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM5OTYyNTE2", + "name": "actions-runner-linux-x64-2.277.1.patch.tar.gz", + "label": null, + "uploader": { + "login": "TingluoHuang", + "id": 1750815, + "node_id": "MDQ6VXNlcjE3NTA4MTU=", + "avatar_url": "https://avatars.githubusercontent.com/u/1750815?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TingluoHuang", + "html_url": "https://github.com/TingluoHuang", + "followers_url": "https://api.github.com/users/TingluoHuang/followers", + "following_url": "https://api.github.com/users/TingluoHuang/following{/other_user}", + "gists_url": "https://api.github.com/users/TingluoHuang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TingluoHuang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TingluoHuang/subscriptions", + "organizations_url": "https://api.github.com/users/TingluoHuang/orgs", + "repos_url": "https://api.github.com/users/TingluoHuang/repos", + "events_url": "https://api.github.com/users/TingluoHuang/events{/privacy}", + "received_events_url": "https://api.github.com/users/TingluoHuang/received_events", + "type": "User", + "site_admin": true + }, + "content_type": "application/x-gzip", + "state": "uploaded", + "size": 73967428, + "download_count": 30, + "created_at": "2021-07-08T21:44:28Z", + "updated_at": "2021-07-08T21:44:32Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.patch.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31864865", + "id": 31864865, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODY0ODY1", + "name": "actions-runner-linux-x64-2.277.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73963809, + "download_count": 417210, + "created_at": "2021-02-09T19:53:07Z", + "updated_at": "2021-02-09T19:53:09Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31864866", + "id": 31864866, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODY0ODY2", + "name": "actions-runner-osx-x64-2.277.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51126670, + "download_count": 16963, + "created_at": "2021-02-09T19:53:10Z", + "updated_at": "2021-02-09T19:53:12Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31864862", + "id": 31864862, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODY0ODYy", + "name": "actions-runner-win-x64-2.277.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45236069, + "download_count": 53327, + "created_at": "2021-02-09T19:53:05Z", + "updated_at": "2021-02-09T19:53:06Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.277.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.277.1", + "body": "## Features\r\n\r\n\r\n## Bugs\r\n - Fixed an issue where docker containers failed to initialize (#977)\r\n\r\n## Misc\r\n\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip -OutFile actions-runner-win-x64-2.277.1.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.277.1.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.277.1.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.277.1.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.277.1.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.277.1.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.277.1.zip 7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\r\n- actions-runner-osx-x64-2.277.1.tar.gz f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\r\n- actions-runner-linux-x64-2.277.1.tar.gz 02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\r\n- actions-runner-linux-arm64-2.277.1.tar.gz a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\r\n- actions-runner-linux-arm-2.277.1.tar.gz 2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/37817992", + "assets_url": "https://api.github.com/repos/actions/runner/releases/37817992/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/37817992/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.277.0", + "id": 37817992, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM3ODE3OTky", + "tag_name": "v2.277.0", + "target_commitish": "a0fa09ddccf4320a2aff590060217fadcc88a8d4", + "name": "v2.277.0", + "draft": false, + "prerelease": true, + "created_at": "2021-02-09T18:30:46Z", + "published_at": "2021-02-09T18:35:38Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31861611", + "id": 31861611, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODYxNjEx", + "name": "actions-runner-linux-arm-2.277.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54389403, + "download_count": 12, + "created_at": "2021-02-09T18:35:44Z", + "updated_at": "2021-02-09T18:35:46Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-arm-2.277.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31861613", + "id": 31861613, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODYxNjEz", + "name": "actions-runner-linux-arm64-2.277.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54563869, + "download_count": 24, + "created_at": "2021-02-09T18:35:46Z", + "updated_at": "2021-02-09T18:35:47Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-arm64-2.277.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31861608", + "id": 31861608, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODYxNjA4", + "name": "actions-runner-linux-x64-2.277.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73947798, + "download_count": 252, + "created_at": "2021-02-09T18:35:41Z", + "updated_at": "2021-02-09T18:35:42Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-x64-2.277.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31861610", + "id": 31861610, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODYxNjEw", + "name": "actions-runner-osx-x64-2.277.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51126663, + "download_count": 60, + "created_at": "2021-02-09T18:35:43Z", + "updated_at": "2021-02-09T18:35:44Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-osx-x64-2.277.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31861607", + "id": 31861607, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxODYxNjA3", + "name": "actions-runner-win-x64-2.277.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45236148, + "download_count": 51, + "created_at": "2021-02-09T18:35:39Z", + "updated_at": "2021-02-09T18:35:40Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-win-x64-2.277.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.277.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.277.0", + "body": "## Features\n - Verify the Runner Hash during auto-upgrade before installing the new runner version (#967)\n - Support download of runners from authenticated endpoints (#920)\n - Enabled tty output in Docker Actions (#916)\n - Added '--check' command to verify runner connectivity (#949)\n\n## Bugs\n - Fix usage of /dev/null and ping in run.sh (#968)\n\n## Misc\n - Updated the copy for various runner messages (#972)\n - Added the runner's OS to telemetry (#939)\n - Various other telemetry improvements (#935)\n\n## Windows x64\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\n\nThe following snipped needs to be run on `powershell`:\n``` powershell\n# Create a folder under the drive root\nmkdir \\actions-runner ; cd \\actions-runner\n# Download the latest runner package\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-win-x64-2.277.0.zip -OutFile actions-runner-win-x64-2.277.0.zip\n# Extract the installer\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.277.0.zip\", \"$PWD\")\n```\n\n## OSX\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-osx-x64-2.277.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.277.0.tar.gz\n```\n\n## Linux x64\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-x64-2.277.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.277.0.tar.gz\n```\n\n## Linux arm64 (Pre-release)\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-arm64-2.277.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.277.0.tar.gz\n```\n\n## Linux arm (Pre-release)\n\n``` bash\n# Create a folder\nmkdir actions-runner && cd actions-runner\n# Download the latest runner package\ncurl -O -L https://github.com/actions/runner/releases/download/v2.277.0/actions-runner-linux-arm-2.277.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.277.0.tar.gz\n```\n\n## Using your self hosted runner\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\n\n## SHA-256 Checksums\n\nThe SHA-256 checksums for the packages included in this build are shown below:\n\n- actions-runner-win-x64-2.277.0.zip b7d0d208b477a9b0b77a009a7c049aaee8d68c9e85cd5904215da89caf57adb5\n- actions-runner-osx-x64-2.277.0.tar.gz 51905d5e23bf3776c32c44ecf10c6b42c10d280bc2f66126d5e3ccdd7810b9c1\n- actions-runner-linux-x64-2.277.0.tar.gz c7010f88061bd26ba4944c5547d8dd1e34380e9acf354865c84342c3a2dc3abd\n- actions-runner-linux-arm64-2.277.0.tar.gz 3d602ca40ec61f293adec4548620d32a9e10c7715e9781c74a44903c88c59a21\n- actions-runner-linux-arm-2.277.0.tar.gz bca468809adcda5d98c171929a1c7450ffbe803eecbf560d55024ceaf8acb235" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/36732641", + "assets_url": "https://api.github.com/repos/actions/runner/releases/36732641/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/36732641/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.276.1", + "id": 36732641, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM2NzMyNjQx", + "tag_name": "v2.276.1", + "target_commitish": "5effa808be96eae7f2e08d713426b8d056bddff1", + "name": "v2.276.1", + "draft": false, + "prerelease": false, + "created_at": "2021-01-21T19:27:46Z", + "published_at": "2021-01-21T19:32:35Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31013189", + "id": 31013189, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMDEzMTg5", + "name": "actions-runner-linux-arm-2.276.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54350220, + "download_count": 530, + "created_at": "2021-01-21T19:32:50Z", + "updated_at": "2021-01-21T19:32:51Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-arm-2.276.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31013190", + "id": 31013190, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMDEzMTkw", + "name": "actions-runner-linux-arm64-2.276.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54527258, + "download_count": 5688, + "created_at": "2021-01-21T19:32:52Z", + "updated_at": "2021-01-21T19:32:53Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-arm64-2.276.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31013169", + "id": 31013169, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMDEzMTY5", + "name": "actions-runner-linux-x64-2.276.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73928496, + "download_count": 211782, + "created_at": "2021-01-21T19:32:37Z", + "updated_at": "2021-01-21T19:32:38Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-x64-2.276.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31013172", + "id": 31013172, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMDEzMTcy", + "name": "actions-runner-osx-x64-2.276.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51119944, + "download_count": 16476, + "created_at": "2021-01-21T19:32:38Z", + "updated_at": "2021-01-21T19:32:50Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-osx-x64-2.276.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/31013168", + "id": 31013168, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMxMDEzMTY4", + "name": "actions-runner-win-x64-2.276.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45228981, + "download_count": 43770, + "created_at": "2021-01-21T19:32:35Z", + "updated_at": "2021-01-21T19:32:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-win-x64-2.276.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.276.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.276.1", + "body": "## Features\r\n\r\n## Bugs\r\n - Downgrade runner to .NET 3 to address an issue with broken pipes in Ubuntu (#928)\r\n - Fixed an issue where FIPS Cryptography broke back-compat scenarios (#928)\r\n\r\n## Misc\r\n - Updated dotnet install scripts (#928)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-win-x64-2.276.1.zip -OutFile actions-runner-win-x64-2.276.1.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.276.1.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-osx-x64-2.276.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.276.1.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-x64-2.276.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.276.1.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-arm64-2.276.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.276.1.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.1/actions-runner-linux-arm-2.276.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.276.1.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)\r\n\r\n## SHA-256 Checksums\r\n\r\nThe SHA-256 checksums for the packages included in this build are shown below:\r\n\r\n- actions-runner-win-x64-2.276.1.zip 80d7400c7fd99ff3702b600466579aad7d16b5dce33f3b15cc82397f2dca9441\r\n- actions-runner-osx-x64-2.276.1.tar.gz 9029e7a9c61ce40152b841f5345aad5a1c82aa451c402c54544c2a613a2051b7\r\n- actions-runner-linux-x64-2.276.1.tar.gz ab66438d5c6c21fc0deb4553bdc9a95c325a3e916df335da1273044e6ede535e\r\n- actions-runner-linux-arm64-2.276.1.tar.gz 77ba7bfe67f266df70cd040fbea6d433d1a063596056160cd5e3c439ac47fd70\r\n- actions-runner-linux-arm-2.276.1.tar.gz 15179f0cd85276379e60607339787a4aa386c13a066676cf2d3309cdc60d759d" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/36451650", + "assets_url": "https://api.github.com/repos/actions/runner/releases/36451650/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/36451650/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.276.0", + "id": 36451650, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM2NDUxNjUw", + "tag_name": "v2.276.0", + "target_commitish": "2ee7717774348de7270a4c04ef1c4b4e26477138", + "name": "v2.276.0", + "draft": false, + "prerelease": false, + "created_at": "2021-01-15T14:18:37Z", + "published_at": "2021-01-15T14:24:48Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/30742895", + "id": 30742895, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNzQyODk1", + "name": "actions-runner-linux-arm-2.276.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 52641601, + "download_count": 159, + "created_at": "2021-01-15T14:24:54Z", + "updated_at": "2021-01-15T14:24:55Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-arm-2.276.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/30742900", + "id": 30742900, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNzQyOTAw", + "name": "actions-runner-linux-arm64-2.276.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54055554, + "download_count": 573, + "created_at": "2021-01-15T14:24:56Z", + "updated_at": "2021-01-15T14:24:57Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-arm64-2.276.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/30742890", + "id": 30742890, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNzQyODkw", + "name": "actions-runner-linux-x64-2.276.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75746162, + "download_count": 19450, + "created_at": "2021-01-15T14:24:50Z", + "updated_at": "2021-01-15T14:24:52Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-x64-2.276.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/30742892", + "id": 30742892, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNzQyODky", + "name": "actions-runner-osx-x64-2.276.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 52862526, + "download_count": 4808, + "created_at": "2021-01-15T14:24:52Z", + "updated_at": "2021-01-15T14:24:54Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-osx-x64-2.276.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/30742889", + "id": 30742889, + "node_id": "MDEyOlJlbGVhc2VBc3NldDMwNzQyODg5", + "name": "actions-runner-win-x64-2.276.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 46590714, + "download_count": 3460, + "created_at": "2021-01-15T14:24:48Z", + "updated_at": "2021-01-15T14:24:49Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-win-x64-2.276.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.276.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.276.0", + "body": "## Features\r\n - Support config runner via GitHub PAT. (#874)\r\n - Update runner to .NET 5 (#799)\r\n - Add new ANDROID_SDK_ROOT environment variable (#892)\r\n - Add warning when running out of disk. (#873)\r\n - Always use FIPS Cryptography (#896)\r\n - Add `--check` to run a serials network test against GitHub or GHES. (#900)\r\n\r\n## Bugs\r\n - Ignore certain scenarios so they are not counted as infra failures (#889)\r\n\r\n## Misc\r\n - Add runner e2e test workflow (#885)\r\n - Add on: pull_request trigger to CodeQL workflow (#907)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-win-x64-2.276.0.zip -OutFile actions-runner-win-x64-2.276.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.276.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-osx-x64-2.276.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.276.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-x64-2.276.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.276.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-arm64-2.276.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.276.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.276.0/actions-runner-linux-arm-2.276.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.276.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/35260064", + "assets_url": "https://api.github.com/repos/actions/runner/releases/35260064/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/35260064/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.275.1", + "id": 35260064, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM1MjYwMDY0", + "tag_name": "v2.275.1", + "target_commitish": "de955418e4e8e0c51546a8495d9236f24edc1321", + "name": "v2.275.1", + "draft": false, + "prerelease": false, + "created_at": "2020-12-14T21:37:14Z", + "published_at": "2020-12-14T21:42:24Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29553687", + "id": 29553687, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTUzNjg3", + "name": "actions-runner-linux-arm-2.275.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54335072, + "download_count": 9769, + "created_at": "2020-12-14T21:42:33Z", + "updated_at": "2020-12-14T21:42:35Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-arm-2.275.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29553688", + "id": 29553688, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTUzNjg4", + "name": "actions-runner-linux-arm64-2.275.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54506535, + "download_count": 7118, + "created_at": "2020-12-14T21:42:35Z", + "updated_at": "2020-12-14T21:42:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-arm64-2.275.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29553681", + "id": 29553681, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTUzNjgx", + "name": "actions-runner-linux-x64-2.275.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73890263, + "download_count": 215134, + "created_at": "2020-12-14T21:42:26Z", + "updated_at": "2020-12-14T21:42:28Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-x64-2.275.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29553683", + "id": 29553683, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTUzNjgz", + "name": "actions-runner-osx-x64-2.275.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51066414, + "download_count": 3999, + "created_at": "2020-12-14T21:42:28Z", + "updated_at": "2020-12-14T21:42:33Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-osx-x64-2.275.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29553680", + "id": 29553680, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTUzNjgw", + "name": "actions-runner-win-x64-2.275.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45176135, + "download_count": 20315, + "created_at": "2020-12-14T21:42:25Z", + "updated_at": "2020-12-14T21:42:26Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-win-x64-2.275.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.275.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.275.1", + "body": "## Features\r\n - Add labels in the script that register runner (#844)\r\n - Add proxy support for container actions (#840)\r\n\r\n## Bugs\r\n - Unset GTIHUB_ACTION_REPOSITORY and GITHUB_ACTION_REF for non-repo based actions #804\r\n - fix compat issue in timeline record state. #861 \r\n\r\n## Misc\r\n - Crypto cleanup and enable usage of FIPS compliant crypto when required (#806)\r\n - Count actions resolve failures as infra failures (#851)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-win-x64-2.275.1.zip -OutFile actions-runner-win-x64-2.275.1.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.275.1.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-osx-x64-2.275.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.275.1.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-x64-2.275.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.275.1.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-arm64-2.275.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.275.1.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.1/actions-runner-linux-arm-2.275.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.275.1.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/35245072", + "assets_url": "https://api.github.com/repos/actions/runner/releases/35245072/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/35245072/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.275.0", + "id": 35245072, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM1MjQ1MDcy", + "tag_name": "v2.275.0", + "target_commitish": "0fe3c90573d4f17fa083a0c7ef2c309c64a784d8", + "name": "v2.275.0", + "draft": false, + "prerelease": false, + "created_at": "2020-12-14T16:14:30Z", + "published_at": "2020-12-14T16:20:34Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29541935", + "id": 29541935, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTQxOTM1", + "name": "actions-runner-linux-arm-2.275.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54335395, + "download_count": 176, + "created_at": "2020-12-14T16:20:42Z", + "updated_at": "2020-12-14T16:20:44Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-arm-2.275.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29541938", + "id": 29541938, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTQxOTM4", + "name": "actions-runner-linux-arm64-2.275.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54506662, + "download_count": 1274, + "created_at": "2020-12-14T16:20:44Z", + "updated_at": "2020-12-14T16:20:46Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-arm64-2.275.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29541932", + "id": 29541932, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTQxOTMy", + "name": "actions-runner-linux-x64-2.275.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73890332, + "download_count": 11620, + "created_at": "2020-12-14T16:20:37Z", + "updated_at": "2020-12-14T16:20:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-x64-2.275.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29541933", + "id": 29541933, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTQxOTMz", + "name": "actions-runner-osx-x64-2.275.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51066313, + "download_count": 885, + "created_at": "2020-12-14T16:20:40Z", + "updated_at": "2020-12-14T16:20:41Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-osx-x64-2.275.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/29541931", + "id": 29541931, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI5NTQxOTMx", + "name": "actions-runner-win-x64-2.275.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45176087, + "download_count": 1860, + "created_at": "2020-12-14T16:20:35Z", + "updated_at": "2020-12-14T16:20:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-win-x64-2.275.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.275.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.275.0", + "body": "## Features\r\n - Add labels in the script that register runner (#844)\r\n - Add proxy support for container actions (#840)\r\n\r\n## Bugs\r\n - Unset GTIHUB_ACTION_REPOSITORY and GITHUB_ACTION_REF for non-repo based actions #804\r\n\r\n## Misc\r\n - Crypto cleanup and enable usage of FIPS compliant crypto when required (#806)\r\n - Count actions resolve failures as infra failures (#851)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-win-x64-2.275.0.zip -OutFile actions-runner-win-x64-2.275.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.275.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-osx-x64-2.275.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.275.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-x64-2.275.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.275.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-arm64-2.275.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.275.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.275.0/actions-runner-linux-arm-2.275.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.275.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/34003197", + "assets_url": "https://api.github.com/repos/actions/runner/releases/34003197/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/34003197/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.274.2", + "id": 34003197, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTM0MDAzMTk3", + "tag_name": "v2.274.2", + "target_commitish": "9987a8d024a6075cd2357d07c5aec9785126d5a9", + "name": "v2.274.2", + "draft": false, + "prerelease": false, + "created_at": "2020-11-16T13:35:02Z", + "published_at": "2020-11-16T13:39:44Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28369434", + "id": 28369434, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MzY5NDM0", + "name": "actions-runner-linux-arm-2.274.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54326974, + "download_count": 3442, + "created_at": "2020-11-16T13:39:51Z", + "updated_at": "2020-11-16T13:39:52Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-arm-2.274.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28369435", + "id": 28369435, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MzY5NDM1", + "name": "actions-runner-linux-arm64-2.274.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54494041, + "download_count": 4391, + "created_at": "2020-11-16T13:39:52Z", + "updated_at": "2020-11-16T13:39:54Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-arm64-2.274.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28369430", + "id": 28369430, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MzY5NDMw", + "name": "actions-runner-linux-x64-2.274.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73899302, + "download_count": 193229, + "created_at": "2020-11-16T13:39:46Z", + "updated_at": "2020-11-16T13:39:49Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-x64-2.274.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28369431", + "id": 28369431, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MzY5NDMx", + "name": "actions-runner-osx-x64-2.274.2.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51066377, + "download_count": 5872, + "created_at": "2020-11-16T13:39:49Z", + "updated_at": "2020-11-16T13:39:50Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-osx-x64-2.274.2.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28369429", + "id": 28369429, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MzY5NDI5", + "name": "actions-runner-win-x64-2.274.2.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45176385, + "download_count": 24098, + "created_at": "2020-11-16T13:39:45Z", + "updated_at": "2020-11-16T13:39:46Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-win-x64-2.274.2.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.274.2", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.274.2", + "body": "## Features\r\n - N/A\r\n\r\n## Bugs\r\n - N/A\r\n\r\n## Misc\r\n - Disabled add-path and set-env runner commands (#779)\r\n - Updated dotnet install scripts (#779)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-win-x64-2.274.2.zip -OutFile actions-runner-win-x64-2.274.2.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.274.2.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-osx-x64-2.274.2.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.274.2.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-x64-2.274.2.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.274.2.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-arm64-2.274.2.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.274.2.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.2/actions-runner-linux-arm-2.274.2.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.274.2.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/33651764", + "assets_url": "https://api.github.com/repos/actions/runner/releases/33651764/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/33651764/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.274.1", + "id": 33651764, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTMzNjUxNzY0", + "tag_name": "v2.274.1", + "target_commitish": "c3219ccd9cc7acedb4996d93c2284e50da5d1f55", + "name": "v2.274.1", + "draft": false, + "prerelease": false, + "created_at": "2020-11-09T14:23:19Z", + "published_at": "2020-11-09T14:28:34Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28100358", + "id": 28100358, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MTAwMzU4", + "name": "actions-runner-linux-arm-2.274.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54326497, + "download_count": 741, + "created_at": "2020-11-09T14:28:40Z", + "updated_at": "2020-11-09T14:28:42Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-arm-2.274.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28100359", + "id": 28100359, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MTAwMzU5", + "name": "actions-runner-linux-arm64-2.274.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54494805, + "download_count": 1495, + "created_at": "2020-11-09T14:28:42Z", + "updated_at": "2020-11-09T14:28:44Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-arm64-2.274.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28100353", + "id": 28100353, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MTAwMzUz", + "name": "actions-runner-linux-x64-2.274.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73892454, + "download_count": 35855, + "created_at": "2020-11-09T14:28:36Z", + "updated_at": "2020-11-09T14:28:38Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-x64-2.274.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28100354", + "id": 28100354, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MTAwMzU0", + "name": "actions-runner-osx-x64-2.274.1.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51066918, + "download_count": 2301, + "created_at": "2020-11-09T14:28:39Z", + "updated_at": "2020-11-09T14:28:40Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-osx-x64-2.274.1.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/28100350", + "id": 28100350, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI4MTAwMzUw", + "name": "actions-runner-win-x64-2.274.1.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45176809, + "download_count": 2442, + "created_at": "2020-11-09T14:28:35Z", + "updated_at": "2020-11-09T14:28:36Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-win-x64-2.274.1.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.274.1", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.274.1", + "body": "## Features\r\n - N/A\r\n\r\n## Bugs\r\n - N/A\r\n\r\n## Misc\r\n - Add deprecation date to add-path and set-env runner commands (#796)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-win-x64-2.274.1.zip -OutFile actions-runner-win-x64-2.274.1.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.274.1.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-osx-x64-2.274.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.274.1.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-x64-2.274.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.274.1.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-arm64-2.274.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.274.1.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.1/actions-runner-linux-arm-2.274.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.274.1.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/33513195", + "assets_url": "https://api.github.com/repos/actions/runner/releases/33513195/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/33513195/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.274.0", + "id": 33513195, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTMzNTEzMTk1", + "tag_name": "v2.274.0", + "target_commitish": "dd945096d01fe8716807115d9e0166bacbce7c03", + "name": "v2.274.0", "draft": false, + "prerelease": false, + "created_at": "2020-11-05T15:35:58Z", + "published_at": "2020-11-05T16:06:14Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/27976169", + "id": 27976169, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3OTc2MTY5", + "name": "actions-runner-linux-arm-2.274.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54327392, + "download_count": 86, + "created_at": "2020-11-05T16:06:22Z", + "updated_at": "2020-11-05T16:06:24Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-arm-2.274.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/27976172", + "id": 27976172, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3OTc2MTcy", + "name": "actions-runner-linux-arm64-2.274.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 54495347, + "download_count": 547, + "created_at": "2020-11-05T16:06:25Z", + "updated_at": "2020-11-05T16:06:27Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-arm64-2.274.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/27976161", + "id": 27976161, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3OTc2MTYx", + "name": "actions-runner-linux-x64-2.274.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 73890698, + "download_count": 6014, + "created_at": "2020-11-05T16:06:17Z", + "updated_at": "2020-11-05T16:06:19Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-x64-2.274.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/27976165", + "id": 27976165, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3OTc2MTY1", + "name": "actions-runner-osx-x64-2.274.0.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 51066886, + "download_count": 1146, + "created_at": "2020-11-05T16:06:20Z", + "updated_at": "2020-11-05T16:06:22Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-osx-x64-2.274.0.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/27976158", + "id": 27976158, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3OTc2MTU4", + "name": "actions-runner-win-x64-2.274.0.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 45176782, + "download_count": 222, + "created_at": "2020-11-05T16:06:14Z", + "updated_at": "2020-11-05T16:06:16Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-win-x64-2.274.0.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.274.0", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.274.0", + "body": "## Features\r\n - Support environment URL parsing (#762, #778)\r\n\r\n## Bugs\r\n - Fixes #759 doesn't change proxy environment variables (#760)\r\n\r\n## Misc\r\n - Add .editorconfig (#768)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-win-x64-2.274.0.zip -OutFile actions-runner-win-x64-2.274.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.274.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-osx-x64-2.274.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.274.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-x64-2.274.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.274.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-arm64-2.274.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.274.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.274.0/actions-runner-linux-arm-2.274.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.274.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/33370289", + "assets_url": "https://api.github.com/repos/actions/runner/releases/33370289/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/33370289/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.273.6", + "id": 33370289, "author": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -30,21 +6457,26 @@ "type": "Bot", "site_admin": false }, - "prerelease": true, - "created_at": "2020-08-19T14:47:07Z", - "published_at": "2020-08-19T14:52:48Z", + "node_id": "MDc6UmVsZWFzZTMzMzcwMjg5", + "tag_name": "v2.273.6", + "target_commitish": "ad745669526010737d2ac2dcd10de80732e8390d", + "name": "v2.273.6", + "draft": false, + "prerelease": false, + "created_at": "2020-11-02T19:22:13Z", + "published_at": "2020-11-02T19:28:11Z", "assets": [ { - "url": "https://api.github.com/repos/actions/runner/releases/assets/24086217", - "id": 24086217, - "node_id": "MDEyOlJlbGVhc2VBc3NldDI0MDg2MjE3", - "name": "actions-runner-linux-arm-2.273.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/27854242", + "id": 27854242, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3ODU0MjQy", + "name": "actions-runner-linux-arm-2.273.6.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -62,23 +6494,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 56188191, - "download_count": 63, - "created_at": "2020-08-19T14:52:54Z", - "updated_at": "2020-08-19T14:52:56Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm-2.273.0.tar.gz" + "size": 56182795, + "download_count": 969, + "created_at": "2020-11-02T19:28:19Z", + "updated_at": "2020-11-02T19:28:21Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-arm-2.273.6.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/24086218", - "id": 24086218, - "node_id": "MDEyOlJlbGVhc2VBc3NldDI0MDg2MjE4", - "name": "actions-runner-linux-arm64-2.273.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/27854243", + "id": 27854243, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3ODU0MjQz", + "name": "actions-runner-linux-arm64-2.273.6.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -96,23 +6528,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 56182491, - "download_count": 97, - "created_at": "2020-08-19T14:52:56Z", - "updated_at": "2020-08-19T14:52:58Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm64-2.273.0.tar.gz" + "size": 56168625, + "download_count": 333, + "created_at": "2020-11-02T19:28:22Z", + "updated_at": "2020-11-02T19:28:24Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-arm64-2.273.6.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/24086215", - "id": 24086215, - "node_id": "MDEyOlJlbGVhc2VBc3NldDI0MDg2MjE1", - "name": "actions-runner-linux-x64-2.273.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/27854240", + "id": 27854240, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3ODU0MjQw", + "name": "actions-runner-linux-x64-2.273.6.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -130,23 +6562,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 75556117, - "download_count": 5913, - "created_at": "2020-08-19T14:52:51Z", - "updated_at": "2020-08-19T14:52:52Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-x64-2.273.0.tar.gz" + "size": 75548639, + "download_count": 32552, + "created_at": "2020-11-02T19:28:14Z", + "updated_at": "2020-11-02T19:28:17Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-x64-2.273.6.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/24086216", - "id": 24086216, - "node_id": "MDEyOlJlbGVhc2VBc3NldDI0MDg2MjE2", - "name": "actions-runner-osx-x64-2.273.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/27854241", + "id": 27854241, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3ODU0MjQx", + "name": "actions-runner-osx-x64-2.273.6.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -164,23 +6596,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 52630785, - "download_count": 2717, - "created_at": "2020-08-19T14:52:53Z", - "updated_at": "2020-08-19T14:52:54Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-osx-x64-2.273.0.tar.gz" + "size": 52649400, + "download_count": 3652, + "created_at": "2020-11-02T19:28:17Z", + "updated_at": "2020-11-02T19:28:19Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-osx-x64-2.273.6.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/24086212", - "id": 24086212, - "node_id": "MDEyOlJlbGVhc2VBc3NldDI0MDg2MjEy", - "name": "actions-runner-win-x64-2.273.0.zip", + "url": "https://api.github.com/repos/actions/runner/releases/assets/27854239", + "id": 27854239, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI3ODU0MjM5", + "name": "actions-runner-win-x64-2.273.6.zip", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -198,33 +6630,238 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 46839054, - "download_count": 496, - "created_at": "2020-08-19T14:52:49Z", - "updated_at": "2020-08-19T14:52:50Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-win-x64-2.273.0.zip" + "size": 46854705, + "download_count": 3127, + "created_at": "2020-11-02T19:28:12Z", + "updated_at": "2020-11-02T19:28:13Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-win-x64-2.273.6.zip" } ], - "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.273.0", - "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.273.0", - "body": "## Features\r\n - Continued improvements to Composite Actions code and documentation (#616, #625, #626, #641, #645, #657, #658)\r\n\r\n## Bugs\r\n - Fix feature flag check; omit context for generated context names (#638)\r\n - Fix endgroup maker (#640)\r\n\r\n## Misc\r\n - Adding help text for the new runnergroup feature (#626)\r\n - Updating virtual environment terminology in readme.md (#651)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-win-x64-2.273.0.zip -OutFile actions-runner-win-x64-2.273.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.273.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-osx-x64-2.273.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.273.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-x64-2.273.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.273.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm64-2.273.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.273.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm-2.273.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.273.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.273.6", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.273.6", + "body": "## Features\r\n - N/A\r\n\r\n## Bugs\r\n - Raise error for set-env, block set node_options using `::set-env::` (#784)\r\n\r\n## Misc\r\n - N/A\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-win-x64-2.273.6.zip -OutFile actions-runner-win-x64-2.273.6.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.273.6.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-osx-x64-2.273.6.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.273.6.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-x64-2.273.6.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.273.6.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-arm64-2.273.6.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.273.6.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.6/actions-runner-linux-arm-2.273.6.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.273.6.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" }, { - "url": "https://api.github.com/repos/actions/runner/releases/29088097", - "assets_url": "https://api.github.com/repos/actions/runner/releases/29088097/assets", - "upload_url": "https://uploads.github.com/repos/actions/runner/releases/29088097/assets{?name,label}", - "html_url": "https://github.com/actions/runner/releases/tag/v2.272.0", - "id": 29088097, - "node_id": "MDc6UmVsZWFzZTI5MDg4MDk3", - "tag_name": "v2.272.0", - "target_commitish": "ae543d59756d8440d9b450f3ca74ada6a1b8aefc", - "name": "v2.272.0", + "url": "https://api.github.com/repos/actions/runner/releases/32100291", + "assets_url": "https://api.github.com/repos/actions/runner/releases/32100291/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/32100291/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.273.5", + "id": 32100291, + "author": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTMyMTAwMjkx", + "tag_name": "v2.273.5", + "target_commitish": "a79bab4b3c993a205a2d73d2b618299d8a96bd26", + "name": "v2.273.5", "draft": false, + "prerelease": false, + "created_at": "2020-10-02T15:59:24Z", + "published_at": "2020-10-02T16:04:14Z", + "assets": [ + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/26479145", + "id": 26479145, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDc5MTQ1", + "name": "actions-runner-linux-arm-2.273.5.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 56182922, + "download_count": 554, + "created_at": "2020-10-02T16:04:23Z", + "updated_at": "2020-10-02T16:04:25Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-arm-2.273.5.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/26479149", + "id": 26479149, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDc5MTQ5", + "name": "actions-runner-linux-arm64-2.273.5.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 56191550, + "download_count": 2080, + "created_at": "2020-10-02T16:04:25Z", + "updated_at": "2020-10-02T16:04:27Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-arm64-2.273.5.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/26479137", + "id": 26479137, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDc5MTM3", + "name": "actions-runner-linux-x64-2.273.5.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75561237, + "download_count": 167587, + "created_at": "2020-10-02T16:04:17Z", + "updated_at": "2020-10-02T16:04:20Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-x64-2.273.5.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/26479142", + "id": 26479142, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDc5MTQy", + "name": "actions-runner-osx-x64-2.273.5.tar.gz", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 52648755, + "download_count": 8765, + "created_at": "2020-10-02T16:04:20Z", + "updated_at": "2020-10-02T16:04:22Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-osx-x64-2.273.5.tar.gz" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/assets/26479134", + "id": 26479134, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI2NDc5MTM0", + "name": "actions-runner-win-x64-2.273.5.zip", + "label": "", + "uploader": { + "login": "github-actions[bot]", + "id": 41898282, + "node_id": "MDM6Qm90NDE4OTgyODI=", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions%5Bbot%5D", + "html_url": "https://github.com/apps/github-actions", + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 46854198, + "download_count": 16772, + "created_at": "2020-10-02T16:04:15Z", + "updated_at": "2020-10-02T16:04:16Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-win-x64-2.273.5.zip" + } + ], + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.273.5", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.273.5", + "body": "## Features\r\n - Expose retention days in env for toolkit/artifacts package (#714)\r\n - Notify on unsecure commands (#731)\r\n\r\n## Bugs\r\n - N/A\r\n\r\n## Misc\r\n - N/A\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-win-x64-2.273.5.zip -OutFile actions-runner-win-x64-2.273.5.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.273.5.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-osx-x64-2.273.5.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.273.5.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-x64-2.273.5.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.273.5.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-arm64-2.273.5.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.273.5.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.5/actions-runner-linux-arm-2.273.5.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.273.5.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + }, + { + "url": "https://api.github.com/repos/actions/runner/releases/31488239", + "assets_url": "https://api.github.com/repos/actions/runner/releases/31488239/assets", + "upload_url": "https://uploads.github.com/repos/actions/runner/releases/31488239/assets{?name,label}", + "html_url": "https://github.com/actions/runner/releases/tag/v2.273.4", + "id": 31488239, "author": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -240,21 +6877,26 @@ "type": "Bot", "site_admin": false }, + "node_id": "MDc6UmVsZWFzZTMxNDg4MjM5", + "tag_name": "v2.273.4", + "target_commitish": "24845a5a01cd29ddf6038c8c5bfd1b91552fb685", + "name": "v2.273.4", + "draft": false, "prerelease": false, - "created_at": "2020-07-29T19:32:44Z", - "published_at": "2020-07-29T19:37:38Z", + "created_at": "2020-09-17T18:13:34Z", + "published_at": "2020-09-17T18:25:23Z", "assets": [ { - "url": "https://api.github.com/repos/actions/runner/releases/assets/23380495", - "id": 23380495, - "node_id": "MDEyOlJlbGVhc2VBc3NldDIzMzgwNDk1", - "name": "actions-runner-linux-arm-2.272.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/25866018", + "id": 25866018, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI1ODY2MDE4", + "name": "actions-runner-linux-arm-2.273.4.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -272,23 +6914,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 56138014, - "download_count": 256, - "created_at": "2020-07-29T19:37:45Z", - "updated_at": "2020-07-29T19:37:46Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm-2.272.0.tar.gz" + "size": 56176033, + "download_count": 222, + "created_at": "2020-09-17T18:25:40Z", + "updated_at": "2020-09-17T18:25:44Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-arm-2.273.4.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/23380497", - "id": 23380497, - "node_id": "MDEyOlJlbGVhc2VBc3NldDIzMzgwNDk3", - "name": "actions-runner-linux-arm64-2.272.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/25866023", + "id": 25866023, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI1ODY2MDIz", + "name": "actions-runner-linux-arm64-2.273.4.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -306,23 +6948,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 56141617, - "download_count": 265, - "created_at": "2020-07-29T19:37:46Z", - "updated_at": "2020-07-29T19:37:48Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm64-2.272.0.tar.gz" + "size": 56191486, + "download_count": 326, + "created_at": "2020-09-17T18:25:45Z", + "updated_at": "2020-09-17T18:25:49Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-arm64-2.273.4.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/23380493", - "id": 23380493, - "node_id": "MDEyOlJlbGVhc2VBc3NldDIzMzgwNDkz", - "name": "actions-runner-linux-x64-2.272.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/25865997", + "id": 25865997, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI1ODY1OTk3", + "name": "actions-runner-linux-x64-2.273.4.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -340,23 +6982,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 75519583, - "download_count": 31840, - "created_at": "2020-07-29T19:37:40Z", - "updated_at": "2020-07-29T19:37:42Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-x64-2.272.0.tar.gz" + "size": 75560971, + "download_count": 47521, + "created_at": "2020-09-17T18:25:28Z", + "updated_at": "2020-09-17T18:25:34Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-x64-2.273.4.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/23380494", - "id": 23380494, - "node_id": "MDEyOlJlbGVhc2VBc3NldDIzMzgwNDk0", - "name": "actions-runner-osx-x64-2.272.0.tar.gz", + "url": "https://api.github.com/repos/actions/runner/releases/assets/25866013", + "id": 25866013, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI1ODY2MDEz", + "name": "actions-runner-osx-x64-2.273.4.tar.gz", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -374,23 +7016,23 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 52631099, - "download_count": 3785, - "created_at": "2020-07-29T19:37:43Z", - "updated_at": "2020-07-29T19:37:44Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-osx-x64-2.272.0.tar.gz" + "size": 52645026, + "download_count": 8366, + "created_at": "2020-09-17T18:25:35Z", + "updated_at": "2020-09-17T18:25:39Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-osx-x64-2.273.4.tar.gz" }, { - "url": "https://api.github.com/repos/actions/runner/releases/assets/23380491", - "id": 23380491, - "node_id": "MDEyOlJlbGVhc2VBc3NldDIzMzgwNDkx", - "name": "actions-runner-win-x64-2.272.0.zip", + "url": "https://api.github.com/repos/actions/runner/releases/assets/25865990", + "id": 25865990, + "node_id": "MDEyOlJlbGVhc2VBc3NldDI1ODY1OTkw", + "name": "actions-runner-win-x64-2.273.4.zip", "label": "", "uploader": { "login": "github-actions[bot]", "id": 41898282, "node_id": "MDM6Qm90NDE4OTgyODI=", - "avatar_url": "https://avatars2.githubusercontent.com/in/15368?v=4", + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4", "gravatar_id": "", "url": "https://api.github.com/users/github-actions%5Bbot%5D", "html_url": "https://github.com/apps/github-actions", @@ -408,15 +7050,15 @@ }, "content_type": "application/octet-stream", "state": "uploaded", - "size": 46838837, - "download_count": 3323, - "created_at": "2020-07-29T19:37:39Z", - "updated_at": "2020-07-29T19:37:40Z", - "browser_download_url": "https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-win-x64-2.272.0.zip" + "size": 46852848, + "download_count": 1409, + "created_at": "2020-09-17T18:25:24Z", + "updated_at": "2020-09-17T18:25:27Z", + "browser_download_url": "https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-win-x64-2.273.4.zip" } ], - "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.272.0", - "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.272.0", - "body": "## Features\r\n - Composite Actions Support for Multiple Run Steps (#549, #557, #564, #568, #569, #578, #591, #599, #605, #609, #610, #615, #624) \r\n - Prepare to switch GITHUB_ACTION to use ContextName instead of refname (#593)\r\n - Fold logs for intermediate docker commands (#608)\r\n - Add ability to register a runner to the non-default self-hosted runner group (#613)\r\n \r\n## Bugs\r\n - Double quotes around variable so CD works if path contains spaces (#602)\r\n - Bump lodash in /src/Misc/expressionFunc/hashFiles (#603) \r\n - Fix poor performance of process spawned from svc daemon (#614)\r\n## Misc\r\n - Move shared ExecutionContext properties under .Global (#594)\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-win-x64-2.272.0.zip -OutFile actions-runner-win-x64-2.272.0.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.272.0.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-osx-x64-2.272.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.272.0.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-x64-2.272.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.272.0.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm64-2.272.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.272.0.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm-2.272.0.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.272.0.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" + "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.273.4", + "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.273.4", + "body": "## Features\r\n - Allow registry credentials for job/service containers (#694) \r\n\r\n## Bugs\r\n - N/A\r\n\r\n## Misc\r\n - N/A\r\n\r\n## Windows x64\r\nWe recommend configuring the runner in a root folder of the Windows drive (e.g. \"C:\\actions-runner\"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.\r\n\r\nThe following snipped needs to be run on `powershell`:\r\n``` powershell\r\n# Create a folder under the drive root\r\nmkdir \\actions-runner ; cd \\actions-runner\r\n# Download the latest runner package\r\nInvoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-win-x64-2.273.4.zip -OutFile actions-runner-win-x64-2.273.4.zip\r\n# Extract the installer\r\nAdd-Type -AssemblyName System.IO.Compression.FileSystem ; \r\n[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$PWD\\actions-runner-win-x64-2.273.4.zip\", \"$PWD\")\r\n```\r\n\r\n## OSX\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-osx-x64-2.273.4.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.273.4.tar.gz\r\n```\r\n\r\n## Linux x64\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-x64-2.273.4.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.273.4.tar.gz\r\n```\r\n\r\n## Linux arm64 (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-arm64-2.273.4.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.273.4.tar.gz\r\n```\r\n\r\n## Linux arm (Pre-release)\r\n\r\n``` bash\r\n# Create a folder\r\nmkdir actions-runner && cd actions-runner\r\n# Download the latest runner package\r\ncurl -O -L https://github.com/actions/runner/releases/download/v2.273.4/actions-runner-linux-arm-2.273.4.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.273.4.tar.gz\r\n```\r\n\r\n## Using your self hosted runner\r\nFor additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)" } -] +] \ No newline at end of file