diff --git a/CHANGELOG.md b/CHANGELOG.md
index 90cba82d..f2b1c3b5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.10.0](https://github.com/philips-labs/terraform-aws-github-runner/compare/v1.9.1...v1.10.0) (2022-09-24)
+
+
+### Features
+
+* Download runner release via latest release API ([#2455](https://github.com/philips-labs/terraform-aws-github-runner/issues/2455)) ([e75e092](https://github.com/philips-labs/terraform-aws-github-runner/commit/e75e092f328dcba40f2d970a090dd6d16b5dd9d7))
+
## [1.9.1](https://github.com/philips-labs/terraform-aws-github-runner/compare/v1.9.0...v1.9.1) (2022-09-18)
diff --git a/README.md b/README.md
index 17f7e938..c09d9dc6 100644
--- a/README.md
+++ b/README.md
@@ -448,7 +448,7 @@ In case the setup does not work as intended follow the trace of events:
| [role\_path](#input\_role\_path) | The path that will be added to role path for created roles, if not set the environment name will be used. | `string` | `null` | no |
| [role\_permissions\_boundary](#input\_role\_permissions\_boundary) | Permissions boundary that will be added to the created roles. | `string` | `null` | no |
| [runner\_additional\_security\_group\_ids](#input\_runner\_additional\_security\_group\_ids) | (optional) List of additional security groups IDs to apply to the runner | `list(string)` | `[]` | no |
-| [runner\_allow\_prerelease\_binaries](#input\_runner\_allow\_prerelease\_binaries) | Allow the runners to update to prerelease binaries. | `bool` | `false` | no |
+| [runner\_allow\_prerelease\_binaries](#input\_runner\_allow\_prerelease\_binaries) | (Deprecated, no longer used), allow the runners to update to prerelease binaries. | `bool` | `null` | no |
| [runner\_architecture](#input\_runner\_architecture) | The platform architecture of the runner instance\_type. | `string` | `"x64"` | no |
| [runner\_as\_root](#input\_runner\_as\_root) | Run the action runner under the root user. Variable `runner_run_as` will be ignored. | `bool` | `false` | no |
| [runner\_binaries\_s3\_sse\_configuration](#input\_runner\_binaries\_s3\_sse\_configuration) | Map containing server-side encryption configuration for runner-binaries S3 bucket. | `any` | `{}` | no |
diff --git a/examples/ubuntu/main.tf b/examples/ubuntu/main.tf
index 4ff93588..7556ce9c 100644
--- a/examples/ubuntu/main.tf
+++ b/examples/ubuntu/main.tf
@@ -93,7 +93,7 @@ module "runners" {
# Uncomment to enable ephemeral runners
# delay_webhook_event = 0
# enable_ephemeral_runners = true
- # enabled_userdata = false
+ # enabled_userdata = true
# Uncommet idle config to have idle runners from 9 to 5 in time zone Amsterdam
# idle_config = [{
diff --git a/modules/runner-binaries-syncer/README.md b/modules/runner-binaries-syncer/README.md
index 4bc63357..1325b3fc 100644
--- a/modules/runner-binaries-syncer/README.md
+++ b/modules/runner-binaries-syncer/README.md
@@ -100,7 +100,7 @@ No modules.
| [prefix](#input\_prefix) | The prefix used for naming resources | `string` | `"github-actions"` | no |
| [role\_path](#input\_role\_path) | The path that will be added to the role, if not set the environment name will be used. | `string` | `null` | no |
| [role\_permissions\_boundary](#input\_role\_permissions\_boundary) | Permissions boundary that will be added to the created role for the lambda. | `string` | `null` | no |
-| [runner\_allow\_prerelease\_binaries](#input\_runner\_allow\_prerelease\_binaries) | Allow the runners to update to prerelease binaries. | `bool` | `false` | no |
+| [runner\_allow\_prerelease\_binaries](#input\_runner\_allow\_prerelease\_binaries) | (Deprecated, no longer used), allow the runners to update to prerelease binaries. | `bool` | `null` | no |
| [runner\_architecture](#input\_runner\_architecture) | The platform architecture of the runner instance\_type. | `string` | `"x64"` | no |
| [runner\_os](#input\_runner\_os) | The EC2 Operating System type to use for action runner instances (linux,windows). | `string` | `"linux"` | no |
| [server\_side\_encryption\_configuration](#input\_server\_side\_encryption\_configuration) | Map containing server-side encryption configuration. | `any` | `{}` | no |
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js
index 9a46cb29..1343754d 100644
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js
@@ -2,13 +2,13 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
collectCoverage: true,
- collectCoverageFrom: ['src/**/*.{ts,js,jsx}', '!src/**/*local*.ts'],
+ collectCoverageFrom: ['src/**/*.{ts,js,jsx}', '!src/**/*local*.ts', '!src/**/*.d.ts'],
coverageThreshold: {
global: {
- branches: 80,
- functions: 80,
- lines: 80,
- statements: 80
+ branches: 85,
+ functions: 78,
+ lines: 93,
+ statements: 93
}
}
};
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json
index 50a07e87..f9b4efe8 100644
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json
@@ -23,7 +23,7 @@
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.34.0",
- "aws-sdk": "^2.1216.0",
+ "aws-sdk": "^2.1219.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^27.5.1",
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/response.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/response.json
new file mode 100644
index 00000000..e69de29b
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 ff165241..98511498 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
@@ -1,17 +1,13 @@
-import { S3 } from 'aws-sdk';
import axios from 'axios';
-import { request } from 'http';
-import { EventEmitter, PassThrough, Readable } from 'stream';
+import { PassThrough } from 'stream';
-import listReleasesEmpty from '../../test/resources/github-list-releases-empty-assets.json';
-import listReleasesNoArm64 from '../../test/resources/github-list-releases-no-arm64.json';
-import listReleasesNoLinux from '../../test/resources/github-list-releases-no-linux.json';
-import listReleases from '../../test/resources/github-list-releases.json';
+import mockDataLatestRelease from '../../test/resources/github-latest-release.json';
+import noX64Assets from '../../test/resources/github-releases-no-x64.json';
import { sync } from './syncer';
const mockOctokit = {
repos: {
- listReleases: jest.fn(),
+ getLatestRelease: jest.fn(),
},
};
jest.mock('@octokit/rest', () => ({
@@ -54,8 +50,7 @@ const bucketObjectKey = (os: string) => bucketObjectNames[os];
const runnerOs = [['linux'], ['win']];
-const latestRelease = '2.287.0';
-const latestPreRelease = '2.287.1';
+const latestRelease = '2.296.2';
beforeEach(() => {
jest.clearAllMocks();
@@ -63,182 +58,67 @@ beforeEach(() => {
jest.setTimeout(60 * 1000);
-describe('Synchronize action distribution.', () => {
+describe('Synchronize action distribution (no S3 tags).', () => {
beforeEach(() => {
process.env.S3_BUCKET_NAME = bucketName;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'false';
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: listReleases,
+ mockOctokit.repos.getLatestRelease.mockImplementation(() => ({
+ data: mockDataLatestRelease,
}));
});
- test.each(runnerOs)('%p Distribution is up-to-date with latest release.', async (os) => {
+ test.each(runnerOs)('%p Distribution is S3 has no tags.', async (os) => {
process.env.S3_OBJECT_KEY = bucketObjectKey(os);
process.env.GITHUB_RUNNER_OS = os;
mockS3.getObjectTagging.mockImplementation(() => {
return {
promise() {
return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}` }],
+ TagSet: undefined,
});
},
};
});
await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
- expect(mockS3.upload).toBeCalledTimes(0);
- });
-
- test.each(runnerOs)(
- '%p Distribution is up-to-date with latest release when there are no prereleases.',
- async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'true';
- const releases = listReleases.slice(1);
-
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: releases,
- }));
- mockS3.getObjectTagging.mockImplementation(() => {
- return {
- promise() {
- return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}` }],
- });
- },
- };
- });
-
- await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
- expect(mockS3.upload).toBeCalledTimes(0);
- },
- );
-
- test.each(runnerOs)('%p Distribution is up-to-date with latest prerelease.', async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'true';
- mockS3.getObjectTagging.mockImplementation(() => {
- return {
- promise() {
- return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-${latestPreRelease}${objectExtension[os]}` }],
- });
- },
- };
- });
-
- await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
- expect(mockS3.upload).toBeCalledTimes(0);
- });
-
- test.each(runnerOs)('%p Distribution should update to release.', async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- mockS3.getObjectTagging.mockImplementation(() => {
- return {
- promise() {
- return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-0${objectExtension[os]}` }],
- });
- },
- };
- });
-
- await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
expect(mockS3.upload).toBeCalledTimes(1);
- const s3JsonBody = mockS3.upload.mock.calls[0][0];
- expect(s3JsonBody['Tagging']).toEqual(`name=actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}`);
});
+});
- test.each(runnerOs)('%p Distribution should update to release if there are no pre-releases.', async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'true';
- const releases = listReleases.slice(1);
+describe('Synchronize action distribution (up-to-date).', () => {
+ beforeEach(() => {
+ process.env.S3_BUCKET_NAME = bucketName;
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: releases,
+ mockOctokit.repos.getLatestRelease.mockImplementation(() => ({
+ data: mockDataLatestRelease,
}));
- mockS3.getObjectTagging.mockImplementation(() => {
- return {
- promise() {
- return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-0${objectExtension[os]}` }],
- });
- },
- };
- });
-
- await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
- expect(mockS3.upload).toBeCalledTimes(1);
- const s3JsonBody = mockS3.upload.mock.calls[0][0];
- expect(s3JsonBody['Tagging']).toEqual(`name=actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}`);
});
- test.each(runnerOs)('%p Distribution should update to prerelease.', async (os) => {
+ test.each(runnerOs)('%p Distribution is up-to-date with latest release.', async (os) => {
process.env.S3_OBJECT_KEY = bucketObjectKey(os);
process.env.GITHUB_RUNNER_OS = os;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'true';
mockS3.getObjectTagging.mockImplementation(() => {
return {
promise() {
return Promise.resolve({
- TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-0${objectExtension[os]}` }],
+ TagSet: [{ Key: 'name', Value: `actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}` }],
});
},
};
});
await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
+ expect(mockOctokit.repos.getLatestRelease).toBeCalledTimes(1);
expect(mockS3.getObjectTagging).toBeCalledWith({
Bucket: bucketName,
Key: bucketObjectKey(os),
});
- expect(mockS3.upload).toBeCalledTimes(1);
- const s3JsonBody = mockS3.upload.mock.calls[0][0];
- expect(s3JsonBody['Tagging']).toEqual(`name=actions-runner-${os}-x64-${latestPreRelease}${objectExtension[os]}`);
+ expect(mockS3.upload).toBeCalledTimes(0);
});
- test.each(runnerOs)('%p Distribution should not update to prerelease if there is a newer release.', async (os) => {
+ test.each(runnerOs)('%p Distribution should update to release.', async (os) => {
process.env.S3_OBJECT_KEY = bucketObjectKey(os);
process.env.GITHUB_RUNNER_OS = os;
- process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = 'true';
- const releases = listReleases;
- releases[0].prerelease = false;
- releases[1].prerelease = true;
-
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: releases,
- }));
mockS3.getObjectTagging.mockImplementation(() => {
return {
promise() {
@@ -250,34 +130,14 @@ describe('Synchronize action distribution.', () => {
});
await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
+ expect(mockOctokit.repos.getLatestRelease).toBeCalledTimes(1);
expect(mockS3.getObjectTagging).toBeCalledWith({
Bucket: bucketName,
Key: bucketObjectKey(os),
});
expect(mockS3.upload).toBeCalledTimes(1);
const s3JsonBody = mockS3.upload.mock.calls[0][0];
- expect(s3JsonBody['Tagging']).toEqual(`name=actions-runner-${os}-x64-${latestPreRelease}${objectExtension[os]}`);
- });
-
- test.each(runnerOs)('%p No tag in S3, distribution should update.', async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- mockS3.getObjectTagging.mockImplementation(() => {
- return {
- promise() {
- throw new Error();
- },
- };
- });
-
- await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
- expect(mockS3.getObjectTagging).toBeCalledWith({
- Bucket: bucketName,
- Key: bucketObjectKey(os),
- });
- expect(mockS3.upload).toBeCalledTimes(1);
+ expect(s3JsonBody['Tagging']).toEqual(`name=actions-runner-${os}-x64-${latestRelease}${objectExtension[os]}`);
});
test.each(runnerOs)('%p Tags, but no version, distribution should update.', async (os) => {
@@ -292,7 +152,7 @@ describe('Synchronize action distribution.', () => {
});
await sync();
- expect(mockOctokit.repos.listReleases).toBeCalledTimes(1);
+ expect(mockOctokit.repos.getLatestRelease).toBeCalledTimes(1);
expect(mockS3.getObjectTagging).toBeCalledWith({
Bucket: bucketName,
Key: bucketObjectKey(os),
@@ -308,9 +168,9 @@ describe('No release assets found.', () => {
process.env.S3_OBJECT_KEY = bucketObjectKey('linux');
});
- it('Empty list of assets.', async () => {
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: listReleasesEmpty,
+ test('Empty result.', async () => {
+ mockOctokit.repos.getLatestRelease.mockImplementation(() => ({
+ data: undefined,
}));
await expect(sync()).rejects.toThrow(errorMessage);
@@ -319,55 +179,30 @@ describe('No release assets found.', () => {
test.each(runnerOs)('No %p x64 asset.', async (os) => {
process.env.S3_OBJECT_KEY = bucketObjectKey(os);
process.env.GITHUB_RUNNER_OS = os;
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: [listReleasesNoLinux],
+ mockOctokit.repos.getLatestRelease.mockImplementation(() => ({
+ data: noX64Assets,
}));
-
- 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', () => {
const errorMessage = 'Please check all mandatory variables are set.';
- it('No bucket and object key.', async () => {
+ test('No bucket and object key.', async () => {
delete process.env.S3_OBJECT_KEY;
delete process.env.S3_BUCKET_NAME;
await expect(sync()).rejects.toThrow(errorMessage);
});
- it('No bucket.', async () => {
+
+ test('No bucket.', async () => {
delete process.env.S3_BUCKET_NAME;
process.env.S3_OBJECT_KEY = bucketObjectKey('linux');
await expect(sync()).rejects.toThrow(errorMessage);
});
- it('No object key.', async () => {
- delete process.env.S3_OBJECT_KEY;
- process.env.S3_BUCKET_NAME = bucketName;
- await expect(sync()).rejects.toThrow(errorMessage);
- });
-});
-describe('Synchronize action distribution for arm64.', () => {
- const errorMessage = 'Cannot find GitHub release asset.';
- beforeEach(() => {
+ test('No object key.', async () => {
+ delete process.env.S3_OBJECT_KEY;
process.env.S3_BUCKET_NAME = bucketName;
- process.env.GITHUB_RUNNER_ARCHITECTURE = 'arm64';
- });
-
- test.each(runnerOs)('No %p arm64 asset.', async (os) => {
- process.env.S3_OBJECT_KEY = bucketObjectKey(os);
- process.env.GITHUB_RUNNER_OS = os;
- mockOctokit.repos.listReleases.mockImplementation(() => ({
- data: [listReleasesNoArm64],
- }));
-
await expect(sync()).rejects.toThrow(errorMessage);
});
});
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 986a929f..4dceaa25 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
@@ -35,35 +35,18 @@ interface ReleaseAsset {
downloadUrl: string;
}
-async function getReleaseAsset(
- runnerOs = 'linux',
- runnerArch = 'x64',
- fetchPrereleaseBinaries = false,
-): Promise {
+async function getReleaseAsset(runnerOs = 'linux', runnerArch = 'x64'): Promise {
const githubClient = new Octokit();
- const assetsList = await githubClient.repos.listReleases({
+ const latestRelease = await githubClient.repos.getLatestRelease({
owner: 'actions',
repo: 'runner',
});
- if (assetsList.data?.length === 0) {
+ if (!latestRelease || !latestRelease.data) {
return undefined;
}
- const latestPrereleaseIndex = assetsList.data.findIndex((a) => a.prerelease === true);
- const latestReleaseIndex = assetsList.data.findIndex((a) => a.prerelease === false);
-
- let asset = undefined;
- if (fetchPrereleaseBinaries && latestPrereleaseIndex != -1 && latestPrereleaseIndex < latestReleaseIndex) {
- asset = assetsList.data[latestPrereleaseIndex];
- } 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 }) =>
+ const releaseVersion = latestRelease.data.tag_name.replace('v', '');
+ const assets = latestRelease.data.assets?.filter((a: { name?: string }) =>
a.name?.includes(`actions-runner-${runnerOs}-${runnerArch}-${releaseVersion}.`),
);
@@ -115,7 +98,6 @@ export async function sync(): Promise {
const runnerOs = process.env.GITHUB_RUNNER_OS || 'linux';
const runnerArch = process.env.GITHUB_RUNNER_ARCHITECTURE || 'x64';
- const fetchPrereleaseBinaries = JSON.parse(process.env.GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES || 'false');
const cacheObject: CacheObject = {
bucket: process.env.S3_BUCKET_NAME as string,
@@ -124,7 +106,7 @@ export async function sync(): Promise {
if (!cacheObject.bucket || !cacheObject.key) {
throw Error('Please check all mandatory variables are set.');
}
- const actionRunnerReleaseAsset = await getReleaseAsset(runnerOs, runnerArch, fetchPrereleaseBinaries);
+ const actionRunnerReleaseAsset = await getReleaseAsset(runnerOs, runnerArch);
if (actionRunnerReleaseAsset === undefined) {
throw Error('Cannot find GitHub release asset.');
}
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/template.yaml b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/template.yaml
index c2038dfb..bd66af9a 100755
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/template.yaml
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/template.yaml
@@ -9,7 +9,6 @@ Resources:
Timeout: 300
Environment:
Variables:
- GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES:
GITHUB_RUNNER_ARCHITECTURE:
GITHUB_RUNNER_OS:
LOG_LEVEL:
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-latest-release.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-latest-release.json
new file mode 100644
index 00000000..a154c5f6
--- /dev/null
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-latest-release.json
@@ -0,0 +1,1072 @@
+{
+ "url": "https://api.github.com/repos/actions/runner/releases/76625279",
+ "assets_url": "https://api.github.com/repos/actions/runner/releases/76625279/assets",
+ "upload_url": "https://uploads.github.com/repos/actions/runner/releases/76625279/assets{?name,label}",
+ "html_url": "https://github.com/actions/runner/releases/tag/v2.296.2",
+ "id": 76625279,
+ "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-m84EkTV_",
+ "tag_name": "v2.296.2",
+ "target_commitish": "21c30edf1e7a80e041649848ea1d91b885a8762e",
+ "name": "v2.296.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-09-08T17:38:20Z",
+ "published_at": "2022-09-08T17:46:24Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269975",
+ "id": 77269975,
+ "node_id": "RA_kwDOCvv-m84EmwvX",
+ "name": "actions-runner-linux-arm-2.296.2-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": 31333284,
+ "download_count": 20,
+ "created_at": "2022-09-08T17:46:59Z",
+ "updated_at": "2022-09-08T17:47:00Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270004",
+ "id": 77270004,
+ "node_id": "RA_kwDOCvv-m84Emwv0",
+ "name": "actions-runner-linux-arm-2.296.2-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": 1786269,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:22Z",
+ "updated_at": "2022-09-08T17:47:23Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269998",
+ "id": 77269998,
+ "node_id": "RA_kwDOCvv-m84Emwvu",
+ "name": "actions-runner-linux-arm-2.296.2-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": 52630075,
+ "download_count": 16,
+ "created_at": "2022-09-08T17:47:14Z",
+ "updated_at": "2022-09-08T17:47:16Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270010",
+ "id": 77270010,
+ "node_id": "RA_kwDOCvv-m84Emwv6",
+ "name": "actions-runner-linux-arm-2.296.2-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": 27,
+ "created_at": "2022-09-08T17:47:27Z",
+ "updated_at": "2022-09-08T17:47:28Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269924",
+ "id": 77269924,
+ "node_id": "RA_kwDOCvv-m84Emwuk",
+ "name": "actions-runner-linux-arm-2.296.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": 81903612,
+ "download_count": 1753,
+ "created_at": "2022-09-08T17:46:39Z",
+ "updated_at": "2022-09-08T17:46:45Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269986",
+ "id": 77269986,
+ "node_id": "RA_kwDOCvv-m84Emwvi",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 31080318,
+ "download_count": 694,
+ "created_at": "2022-09-08T17:47:01Z",
+ "updated_at": "2022-09-08T17:47:03Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270005",
+ "id": 77270005,
+ "node_id": "RA_kwDOCvv-m84Emwv1",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 1796425,
+ "download_count": 13,
+ "created_at": "2022-09-08T17:47:23Z",
+ "updated_at": "2022-09-08T17:47:24Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269999",
+ "id": 77269999,
+ "node_id": "RA_kwDOCvv-m84Emwvv",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 57311409,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:16Z",
+ "updated_at": "2022-09-08T17:47:18Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270011",
+ "id": 77270011,
+ "node_id": "RA_kwDOCvv-m84Emwv7",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 28,
+ "created_at": "2022-09-08T17:47:28Z",
+ "updated_at": "2022-09-08T17:47:29Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269942",
+ "id": 77269942,
+ "node_id": "RA_kwDOCvv-m84Emwu2",
+ "name": "actions-runner-linux-arm64-2.296.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": 86311556,
+ "download_count": 21667,
+ "created_at": "2022-09-08T17:46:46Z",
+ "updated_at": "2022-09-08T17:46:49Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269949",
+ "id": 77269949,
+ "node_id": "RA_kwDOCvv-m84Emwu9",
+ "name": "actions-runner-linux-x64-2.296.2-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": 33419817,
+ "download_count": 14902,
+ "created_at": "2022-09-08T17:46:52Z",
+ "updated_at": "2022-09-08T17:46:54Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-x64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270001",
+ "id": 77270001,
+ "node_id": "RA_kwDOCvv-m84Emwvx",
+ "name": "actions-runner-linux-x64-2.296.2-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": 1868708,
+ "download_count": 1178,
+ "created_at": "2022-09-08T17:47:20Z",
+ "updated_at": "2022-09-08T17:47:20Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-x64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269994",
+ "id": 77269994,
+ "node_id": "RA_kwDOCvv-m84Emwvq",
+ "name": "actions-runner-linux-x64-2.296.2-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": 110446196,
+ "download_count": 33,
+ "created_at": "2022-09-08T17:47:06Z",
+ "updated_at": "2022-09-08T17:47:09Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-x64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270007",
+ "id": 77270007,
+ "node_id": "RA_kwDOCvv-m84Emwv3",
+ "name": "actions-runner-linux-x64-2.296.2-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": 2180,
+ "created_at": "2022-09-08T17:47:25Z",
+ "updated_at": "2022-09-08T17:47:25Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-x64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269901",
+ "id": 77269901,
+ "node_id": "RA_kwDOCvv-m84EmwuN",
+ "name": "actions-runner-linux-x64-2.296.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": 141713128,
+ "download_count": 448280,
+ "created_at": "2022-09-08T17:46:28Z",
+ "updated_at": "2022-09-08T17:46:32Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-x64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269970",
+ "id": 77269970,
+ "node_id": "RA_kwDOCvv-m84EmwvS",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 30874139,
+ "download_count": 15,
+ "created_at": "2022-09-08T17:46:56Z",
+ "updated_at": "2022-09-08T17:46:58Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270003",
+ "id": 77270003,
+ "node_id": "RA_kwDOCvv-m84Emwvz",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 1801192,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:22Z",
+ "updated_at": "2022-09-08T17:47:22Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269997",
+ "id": 77269997,
+ "node_id": "RA_kwDOCvv-m84Emwvt",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 30560082,
+ "download_count": 12,
+ "created_at": "2022-09-08T17:47:12Z",
+ "updated_at": "2022-09-08T17:47:13Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270009",
+ "id": 77270009,
+ "node_id": "RA_kwDOCvv-m84Emwv5",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 28,
+ "created_at": "2022-09-08T17:47:26Z",
+ "updated_at": "2022-09-08T17:47:27Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269915",
+ "id": 77269915,
+ "node_id": "RA_kwDOCvv-m84Emwub",
+ "name": "actions-runner-osx-arm64-2.296.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": 59243964,
+ "download_count": 1257,
+ "created_at": "2022-09-08T17:46:36Z",
+ "updated_at": "2022-09-08T17:46:38Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269968",
+ "id": 77269968,
+ "node_id": "RA_kwDOCvv-m84EmwvQ",
+ "name": "actions-runner-osx-x64-2.296.2-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": 32793559,
+ "download_count": 691,
+ "created_at": "2022-09-08T17:46:54Z",
+ "updated_at": "2022-09-08T17:46:56Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270002",
+ "id": 77270002,
+ "node_id": "RA_kwDOCvv-m84Emwvy",
+ "name": "actions-runner-osx-x64-2.296.2-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": 1802800,
+ "download_count": 1109,
+ "created_at": "2022-09-08T17:47:21Z",
+ "updated_at": "2022-09-08T17:47:21Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269996",
+ "id": 77269996,
+ "node_id": "RA_kwDOCvv-m84Emwvs",
+ "name": "actions-runner-osx-x64-2.296.2-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": 53007086,
+ "download_count": 15,
+ "created_at": "2022-09-08T17:47:10Z",
+ "updated_at": "2022-09-08T17:47:12Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270008",
+ "id": 77270008,
+ "node_id": "RA_kwDOCvv-m84Emwv4",
+ "name": "actions-runner-osx-x64-2.296.2-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": 2843,
+ "created_at": "2022-09-08T17:47:26Z",
+ "updated_at": "2022-09-08T17:47:26Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269912",
+ "id": 77269912,
+ "node_id": "RA_kwDOCvv-m84EmwuY",
+ "name": "actions-runner-osx-x64-2.296.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": 83620713,
+ "download_count": 11078,
+ "created_at": "2022-09-08T17:46:33Z",
+ "updated_at": "2022-09-08T17:46:36Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269943",
+ "id": 77269943,
+ "node_id": "RA_kwDOCvv-m84Emwu3",
+ "name": "actions-runner-win-x64-2.296.2-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": 34574727,
+ "download_count": 31,
+ "created_at": "2022-09-08T17:46:49Z",
+ "updated_at": "2022-09-08T17:46:52Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-win-x64-2.296.2-noexternals.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270000",
+ "id": 77270000,
+ "node_id": "RA_kwDOCvv-m84Emwvw",
+ "name": "actions-runner-win-x64-2.296.2-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": 1965002,
+ "download_count": 32,
+ "created_at": "2022-09-08T17:47:19Z",
+ "updated_at": "2022-09-08T17:47:19Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-win-x64-2.296.2-noruntime-noexternals.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269991",
+ "id": 77269991,
+ "node_id": "RA_kwDOCvv-m84Emwvn",
+ "name": "actions-runner-win-x64-2.296.2-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": 40184886,
+ "download_count": 35,
+ "created_at": "2022-09-08T17:47:03Z",
+ "updated_at": "2022-09-08T17:47:05Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-win-x64-2.296.2-noruntime.zip"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270006",
+ "id": 77270006,
+ "node_id": "RA_kwDOCvv-m84Emwv2",
+ "name": "actions-runner-win-x64-2.296.2-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": 1724,
+ "created_at": "2022-09-08T17:47:24Z",
+ "updated_at": "2022-09-08T17:47:25Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-win-x64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269895",
+ "id": 77269895,
+ "node_id": "RA_kwDOCvv-m84EmwuH",
+ "name": "actions-runner-win-x64-2.296.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": 72506232,
+ "download_count": 72507,
+ "created_at": "2022-09-08T17:46:25Z",
+ "updated_at": "2022-09-08T17:46:27Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-win-x64-2.296.2.zip"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.296.2",
+ "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.296.2",
+ "body": "## Bugs\n- Fixed an issue where self hosted environments had their docker env's overwritten (#2107)\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.296.2/actions-runner-win-x64-2.296.2.zip -OutFile actions-runner-win-x64-2.296.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.296.2.zip\", \"$PWD\")\n```\n\n## OSX 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.296.2/actions-runner-osx-x64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.296.2.tar.gz\n```\n\n## OSX arm64 (Apple silicon)\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.296.2/actions-runner-osx-arm64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-arm64-2.296.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.296.2/actions-runner-linux-x64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.296.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.296.2/actions-runner-linux-arm64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.296.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.296.2/actions-runner-linux-arm-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.296.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.296.2.zip 96d03cf54dbfe2e016bd2aa5a08ffbd2a803b1899b0ae3eedf4bd18e370f14a4\n- actions-runner-osx-x64-2.296.2.tar.gz 033b78d42f476f6ba55f3a083304221a21319da9f7543e82842209c5b9c27fe9\n- actions-runner-osx-arm64-2.296.2.tar.gz ae7d0edbd7e0d5ebcbb6d5066d432d21731160b0a1148373a608c077bc9b80ca\n- actions-runner-linux-x64-2.296.2.tar.gz 34a8f34956cdacd2156d4c658cce8dd54c5aef316a16bbbc95eb3ca4fd76429a\n- actions-runner-linux-arm64-2.296.2.tar.gz 0297855418398e0efcc487fe3dc581469c38534252f713fba22a603037eaa6b0\n- actions-runner-linux-arm-2.296.2.tar.gz c34088b09bb0301bf16876909c4ff56be52d51992e0b4600f7cb2525046e5214\n\n- actions-runner-win-x64-2.296.2-noexternals.zip 1685d87ef74ced74926798751b883eb174a1124c1e59034343574e62b60617b4\n- actions-runner-osx-x64-2.296.2-noexternals.tar.gz e4384e69c5d15bccc3554965c1f7c894b0128e30be9a7273f89a21df4e347a7c\n- actions-runner-osx-arm64-2.296.2-noexternals.tar.gz 27b375a5b6183afc21f971708be86ceabc6c040cde24964b621e64a104b0a3df\n- actions-runner-linux-x64-2.296.2-noexternals.tar.gz 12276c22535184972b691333ee019893a5135488c42cda0746abbdd1434daaa4\n- actions-runner-linux-arm64-2.296.2-noexternals.tar.gz ad51fe591b3582b09f187152f41d7ce3bd86cfd2c5b132c90d9c513085408e7b\n- actions-runner-linux-arm-2.296.2-noexternals.tar.gz 08291eae8ec806e57412fe54639fc6c83002a813a352ca8e255ac8e8b6e2e33b\n\n- actions-runner-win-x64-2.296.2-noruntime.zip f8b28ac0dce7f178adb76db343a49ffb98cf075b554a393a7d03942d8996dcf2\n- actions-runner-osx-x64-2.296.2-noruntime.tar.gz 28169dfa52b7aa7871b0fdf30e20078126989a57c7619b976672a3d348c7cb7d\n- actions-runner-osx-arm64-2.296.2-noruntime.tar.gz cc5fe8ad88412749cc37112f6066da7b07bcadf3694e4089cef6e2e3a247cca1\n- actions-runner-linux-x64-2.296.2-noruntime.tar.gz d9707270cfa527287049df8dc13b94cb5eb86f15553b15142bd57738a33427ed\n- actions-runner-linux-arm64-2.296.2-noruntime.tar.gz c6e7b1ee31295ddea7d906fd6987548395a7dcb0cd0220f787dcd035973a99b3\n- actions-runner-linux-arm-2.296.2-noruntime.tar.gz 4de0827c0aecaa37087082904f8ac95555463bd968cc6c0c62fc76dc6acbdd2b\n\n- actions-runner-win-x64-2.296.2-noruntime-noexternals.zip 58cebad95fc921cef15c71a05adb03065ba7e1ed01deef047239756d0e705251\n- actions-runner-osx-x64-2.296.2-noruntime-noexternals.tar.gz fde46e40794ca21fe9b920f4fbbd77691f72033bd7dd6e94ed2728536ec4444f\n- actions-runner-osx-arm64-2.296.2-noruntime-noexternals.tar.gz 05e96fa74c448b773980e56b3ac552411c5d8fe50845e5d74eba4054eef5305e\n- actions-runner-linux-x64-2.296.2-noruntime-noexternals.tar.gz e54c08b4e055e60c91d7ffcd58a500c8a911d8909c6ddbb7c6442daf71a933d8\n- actions-runner-linux-arm64-2.296.2-noruntime-noexternals.tar.gz dbc1c3298faf8b87698a14de880bb5d8d60a1c5a6d2a6a4cf395b0c3722a31ba\n- actions-runner-linux-arm-2.296.2-noruntime-noexternals.tar.gz ae8b714bfa17acf5d144b7cac78df9938f1613ab060275b844dc3254e7ed65c0",
+ "reactions": {
+ "url": "https://api.github.com/repos/actions/runner/releases/76625279/reactions",
+ "total_count": 2,
+ "+1": 2,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+}
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-empty-assets.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-empty-assets.json
deleted file mode 100644
index 4d70665d..00000000
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-empty-assets.json
+++ /dev/null
@@ -1,41 +0,0 @@
-[
- {
- "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",
- "draft": false,
- "author": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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
- },
- "prerelease": false,
- "created_at": "2020-08-19T14:47:07Z",
- "published_at": "2020-08-19T14:52:48Z",
- "assets": [],
- "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)"
- }
-]
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-arm64.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-arm64.json
deleted file mode 100644
index 338bbe10..00000000
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-arm64.json
+++ /dev/null
@@ -1,388 +0,0 @@
-[
- {
- "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",
- "draft": false,
- "author": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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
- },
- "prerelease": true,
- "created_at": "2020-08-19T14:47:07Z",
- "published_at": "2020-08-19T14:52:48Z",
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- }
- ],
- "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)"
- },
- {
- "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",
- "draft": false,
- "author": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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
- },
- "prerelease": false,
- "created_at": "2020-07-29T19:32:44Z",
- "published_at": "2020-07-29T19:37:38Z",
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- }
- ],
- "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)"
- }
-]
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-linux.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-linux.json
deleted file mode 100644
index cfa702ae..00000000
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-linux.json
+++ /dev/null
@@ -1,388 +0,0 @@
-[
- {
- "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",
- "draft": false,
- "author": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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
- },
- "prerelease": true,
- "created_at": "2020-08-19T14:47:07Z",
- "published_at": "2020-08-19T14:52:48Z",
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- }
- ],
- "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)"
- },
- {
- "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",
- "draft": false,
- "author": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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
- },
- "prerelease": false,
- "created_at": "2020-07-29T19:32:44Z",
- "published_at": "2020-07-29T19:37:38Z",
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- },
- {
- "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",
- "label": "",
- "uploader": {
- "login": "github-actions[bot]",
- "id": 41898282,
- "node_id": "MDM6Qm90NDE4OTgyODI=",
- "avatar_url": "https://avatars2.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": 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"
- }
- ],
- "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)"
- }
-]
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
deleted file mode 100644
index 1f45e90c..00000000
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json
+++ /dev/null
@@ -1,9105 +0,0 @@
-
-[
- {
- "url": "https://api.github.com/repos/actions/runner/releases/58139787",
- "assets_url": "https://api.github.com/repos/actions/runner/releases/58139787/assets",
- "upload_url": "https://uploads.github.com/repos/actions/runner/releases/58139787/assets{?name,label}",
- "html_url": "https://github.com/actions/runner/releases/tag/v2.287.1",
- "id": 58139787,
- "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-m84DdySL",
- "tag_name": "v2.287.1",
- "target_commitish": "b4e17c4fee3674494ffe88c5e06e42acb6788a37",
- "name": "v2.287.1",
- "draft": false,
- "prerelease": true,
- "created_at": "2022-01-27T21:01:31Z",
- "published_at": "2022-01-27T21:27:57Z",
- "assets": [
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141650",
- "id": 55141650,
- "node_id": "RA_kwDOCvv-m84DSWUS",
- "name": "actions-runner-linux-arm-2.287.1-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": 31119538,
- "download_count": 10,
- "created_at": "2022-01-27T21:28:28Z",
- "updated_at": "2022-01-27T21:28:29Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141713",
- "id": 55141713,
- "node_id": "RA_kwDOCvv-m84DSWVR",
- "name": "actions-runner-linux-arm-2.287.1-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": 1733168,
- "download_count": 4,
- "created_at": "2022-01-27T21:28:58Z",
- "updated_at": "2022-01-27T21:28:59Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141702",
- "id": 55141702,
- "node_id": "RA_kwDOCvv-m84DSWVG",
- "name": "actions-runner-linux-arm-2.287.1-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": 51217914,
- "download_count": 10,
- "created_at": "2022-01-27T21:28:49Z",
- "updated_at": "2022-01-27T21:28:51Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141724",
- "id": 55141724,
- "node_id": "RA_kwDOCvv-m84DSWVc",
- "name": "actions-runner-linux-arm-2.287.1-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": 11,
- "created_at": "2022-01-27T21:29:03Z",
- "updated_at": "2022-01-27T21:29:03Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141634",
- "id": 55141634,
- "node_id": "RA_kwDOCvv-m84DSWUC",
- "name": "actions-runner-linux-arm-2.287.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": 80328426,
- "download_count": 1391,
- "created_at": "2022-01-27T21:28:12Z",
- "updated_at": "2022-01-27T21:28:15Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141654",
- "id": 55141654,
- "node_id": "RA_kwDOCvv-m84DSWUW",
- "name": "actions-runner-linux-arm64-2.287.1-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": 30867326,
- "download_count": 668,
- "created_at": "2022-01-27T21:28:30Z",
- "updated_at": "2022-01-27T21:28:32Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141716",
- "id": 55141716,
- "node_id": "RA_kwDOCvv-m84DSWVU",
- "name": "actions-runner-linux-arm64-2.287.1-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": 1743717,
- "download_count": 9,
- "created_at": "2022-01-27T21:28:59Z",
- "updated_at": "2022-01-27T21:29:00Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141705",
- "id": 55141705,
- "node_id": "RA_kwDOCvv-m84DSWVJ",
- "name": "actions-runner-linux-arm64-2.287.1-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": 55808023,
- "download_count": 8,
- "created_at": "2022-01-27T21:28:52Z",
- "updated_at": "2022-01-27T21:28:55Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141726",
- "id": 55141726,
- "node_id": "RA_kwDOCvv-m84DSWVe",
- "name": "actions-runner-linux-arm64-2.287.1-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": 15,
- "created_at": "2022-01-27T21:29:03Z",
- "updated_at": "2022-01-27T21:29:04Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141636",
- "id": 55141636,
- "node_id": "RA_kwDOCvv-m84DSWUE",
- "name": "actions-runner-linux-arm64-2.287.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": 84660950,
- "download_count": 7925,
- "created_at": "2022-01-27T21:28:16Z",
- "updated_at": "2022-01-27T21:28:20Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141648",
- "id": 55141648,
- "node_id": "RA_kwDOCvv-m84DSWUQ",
- "name": "actions-runner-linux-x64-2.287.1-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": 33204575,
- "download_count": 2749,
- "created_at": "2022-01-27T21:28:23Z",
- "updated_at": "2022-01-27T21:28:25Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141710",
- "id": 55141710,
- "node_id": "RA_kwDOCvv-m84DSWVO",
- "name": "actions-runner-linux-x64-2.287.1-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": 1816228,
- "download_count": 1394,
- "created_at": "2022-01-27T21:28:56Z",
- "updated_at": "2022-01-27T21:28:57Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141672",
- "id": 55141672,
- "node_id": "RA_kwDOCvv-m84DSWUo",
- "name": "actions-runner-linux-x64-2.287.1-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": 107956146,
- "download_count": 1164,
- "created_at": "2022-01-27T21:28:35Z",
- "updated_at": "2022-01-27T21:28:46Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141721",
- "id": 55141721,
- "node_id": "RA_kwDOCvv-m84DSWVZ",
- "name": "actions-runner-linux-x64-2.287.1-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": 817,
- "created_at": "2022-01-27T21:29:01Z",
- "updated_at": "2022-01-27T21:29:01Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141620",
- "id": 55141620,
- "node_id": "RA_kwDOCvv-m84DSWT0",
- "name": "actions-runner-linux-x64-2.287.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": 139065636,
- "download_count": 283888,
- "created_at": "2022-01-27T21:28:01Z",
- "updated_at": "2022-01-27T21:28:07Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141649",
- "id": 55141649,
- "node_id": "RA_kwDOCvv-m84DSWUR",
- "name": "actions-runner-osx-x64-2.287.1-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": 32553935,
- "download_count": 103,
- "created_at": "2022-01-27T21:28:26Z",
- "updated_at": "2022-01-27T21:28:27Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-osx-x64-2.287.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141712",
- "id": 55141712,
- "node_id": "RA_kwDOCvv-m84DSWVQ",
- "name": "actions-runner-osx-x64-2.287.1-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": 1757312,
- "download_count": 141,
- "created_at": "2022-01-27T21:28:57Z",
- "updated_at": "2022-01-27T21:28:58Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-osx-x64-2.287.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141699",
- "id": 55141699,
- "node_id": "RA_kwDOCvv-m84DSWVD",
- "name": "actions-runner-osx-x64-2.287.1-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": 50535669,
- "download_count": 5,
- "created_at": "2022-01-27T21:28:46Z",
- "updated_at": "2022-01-27T21:28:49Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-osx-x64-2.287.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141723",
- "id": 55141723,
- "node_id": "RA_kwDOCvv-m84DSWVb",
- "name": "actions-runner-osx-x64-2.287.1-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": 295,
- "created_at": "2022-01-27T21:29:02Z",
- "updated_at": "2022-01-27T21:29:02Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-osx-x64-2.287.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141630",
- "id": 55141630,
- "node_id": "RA_kwDOCvv-m84DSWT-",
- "name": "actions-runner-osx-x64-2.287.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": 80959057,
- "download_count": 5626,
- "created_at": "2022-01-27T21:28:08Z",
- "updated_at": "2022-01-27T21:28:11Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-osx-x64-2.287.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141640",
- "id": 55141640,
- "node_id": "RA_kwDOCvv-m84DSWUI",
- "name": "actions-runner-win-x64-2.287.1-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": 34273976,
- "download_count": 12,
- "created_at": "2022-01-27T21:28:21Z",
- "updated_at": "2022-01-27T21:28:23Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-win-x64-2.287.1-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141708",
- "id": 55141708,
- "node_id": "RA_kwDOCvv-m84DSWVM",
- "name": "actions-runner-win-x64-2.287.1-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": 1918000,
- "download_count": 11,
- "created_at": "2022-01-27T21:28:55Z",
- "updated_at": "2022-01-27T21:28:56Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-win-x64-2.287.1-noruntime-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141664",
- "id": 55141664,
- "node_id": "RA_kwDOCvv-m84DSWUg",
- "name": "actions-runner-win-x64-2.287.1-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": 39616519,
- "download_count": 10,
- "created_at": "2022-01-27T21:28:32Z",
- "updated_at": "2022-01-27T21:28:34Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-win-x64-2.287.1-noruntime.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141718",
- "id": 55141718,
- "node_id": "RA_kwDOCvv-m84DSWVW",
- "name": "actions-runner-win-x64-2.287.1-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": 164,
- "created_at": "2022-01-27T21:29:00Z",
- "updated_at": "2022-01-27T21:29:01Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-win-x64-2.287.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55141606",
- "id": 55141606,
- "node_id": "RA_kwDOCvv-m84DSWTm",
- "name": "actions-runner-win-x64-2.287.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": 71692122,
- "download_count": 18050,
- "created_at": "2022-01-27T21:27:57Z",
- "updated_at": "2022-01-27T21:28:00Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-win-x64-2.287.1.zip"
- }
- ],
- "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.287.1",
- "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.287.1",
- "body": "## Features\r\n\r\n\r\n## Bugs\r\n- Fixes an issue where the run.sh and run.cmd scripts were not working as expected (#1634)\r\n\r\n## Misc\r\n\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.287.1/actions-runner-win-x64-2.287.1.zip -OutFile actions-runner-win-x64-2.287.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.287.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.287.1/actions-runner-osx-x64-2.287.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-osx-x64-2.287.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.287.1/actions-runner-linux-x64-2.287.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-x64-2.287.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.287.1/actions-runner-linux-arm64-2.287.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm64-2.287.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.287.1/actions-runner-linux-arm-2.287.1.tar.gz\r\n# Extract the installer\r\ntar xzf ./actions-runner-linux-arm-2.287.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.287.1.zip 91f8ab7837b2968328fa04fa14ec8f18767b0dfa12b2b293e77cf36ee6d33673\r\n- actions-runner-osx-x64-2.287.1.tar.gz e3c99df84f6e184e04c2dba60a8ad51a9d6115c29186d725a7d3d91561c3f839\r\n- actions-runner-linux-x64-2.287.1.tar.gz 8fa64384d6fdb764797503cf9885e01273179079cf837bfc2b298b1a8fd01d52\r\n- actions-runner-linux-arm64-2.287.1.tar.gz 9a59cb84458b27767e082080e7b575e42b36f0e32a493fc9627ca8e29f4b3346\r\n- actions-runner-linux-arm-2.287.1.tar.gz cd61ab3f9742a20d4fa69281153e8449ab5ad13ef7248ed2839bc232e15773fe\r\n\r\n- actions-runner-win-x64-2.287.1-noexternals.zip b1e35bb1c70eb89d978255cb3c47797fe404f104570f3b55d19db33fce0ad8b5\r\n- actions-runner-osx-x64-2.287.1-noexternals.tar.gz 15a653771bf351ba317eae21395b1129468c9ea24256dbcba7cdc761fe684f2e\r\n- actions-runner-linux-x64-2.287.1-noexternals.tar.gz 623213dcfa15cd81e4c7bcdd45a803e0af7aca410b36f3aa96e36080f9af4365\r\n- actions-runner-linux-arm64-2.287.1-noexternals.tar.gz c6f5f855cdff3e91bc8b3713dddbbfe9d5adedbe92305c82db9b14118ff8329b\r\n- actions-runner-linux-arm-2.287.1-noexternals.tar.gz c76ae025725bd8fa96ee30310bbb2f7a0a212d685e534ceb8fc1dd677efbae55\r\n\r\n- actions-runner-win-x64-2.287.1-noruntime.zip 02efd0599e4df86da820b447abc352eff18222fd68edea63991e0eea1c695b86\r\n- actions-runner-osx-x64-2.287.1-noruntime.tar.gz 633579fce1f44334e41ed60ae5f0f65bc76e28e7124981a6e506e18bd9bef48a\r\n- actions-runner-linux-x64-2.287.1-noruntime.tar.gz b2fef08214463600be37f95ef1ed50a0d345fe52cd8d843c458a7a18c347fbcd\r\n- actions-runner-linux-arm64-2.287.1-noruntime.tar.gz fdea344b5a6f4d067769472bd8459e8c145338d89dbb9f9a0460edeb39427108\r\n- actions-runner-linux-arm-2.287.1-noruntime.tar.gz 7b9e79c5f868a4f703bd5cfe84a896f64769e0c1de765ec4f4530a74661926cf\r\n\r\n- actions-runner-win-x64-2.287.1-noruntime-noexternals.zip 7a62a18ba15ad564cec960a3c9b38a65c5e9b3904a65d0ee6265485a34a3623a\r\n- actions-runner-osx-x64-2.287.1-noruntime-noexternals.tar.gz 5b2f8d1b45c17c8ba7ba49ab2edd94635018db1e43b7f1f6f5c474786f6e71ad\r\n- actions-runner-linux-x64-2.287.1-noruntime-noexternals.tar.gz 9c7c26ba109ca93779f27fef745c5e3671fdc10661ac782db9e1c70c57998bde\r\n- actions-runner-linux-arm64-2.287.1-noruntime-noexternals.tar.gz b4c44990323a2835e87614b003cb4457b2beb9d222f667cc70b87c6fcc7e2e4c\r\n- actions-runner-linux-arm-2.287.1-noruntime-noexternals.tar.gz b334ebf541142acb16348f3c46606deb101c08ababa89918ed68000cc38ef40c"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/58115769",
- "assets_url": "https://api.github.com/repos/actions/runner/releases/58115769/assets",
- "upload_url": "https://uploads.github.com/repos/actions/runner/releases/58115769/assets{?name,label}",
- "html_url": "https://github.com/actions/runner/releases/tag/v2.287.0",
- "id": 58115769,
- "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-m84Ddsa5",
- "tag_name": "v2.287.0",
- "target_commitish": "444f05427875e5404126199b7feb76a8da409414",
- "name": "v2.287.0",
- "draft": false,
- "prerelease": false,
- "created_at": "2022-01-27T16:37:58Z",
- "published_at": "2022-01-27T16:46:24Z",
- "assets": [
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121068",
- "id": 55121068,
- "node_id": "RA_kwDOCvv-m84DSRSs",
- "name": "actions-runner-linux-arm-2.287.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": 31120088,
- "download_count": 1,
- "created_at": "2022-01-27T16:46:48Z",
- "updated_at": "2022-01-27T16:46:50Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm-2.287.0-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121100",
- "id": 55121100,
- "node_id": "RA_kwDOCvv-m84DSRTM",
- "name": "actions-runner-linux-arm-2.287.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": 1733609,
- "download_count": 1,
- "created_at": "2022-01-27T16:47:06Z",
- "updated_at": "2022-01-27T16:47:07Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm-2.287.0-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121087",
- "id": 55121087,
- "node_id": "RA_kwDOCvv-m84DSRS_",
- "name": "actions-runner-linux-arm-2.287.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": 51217263,
- "download_count": 1,
- "created_at": "2022-01-27T16:46:59Z",
- "updated_at": "2022-01-27T16:47:01Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm-2.287.0-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121106",
- "id": 55121106,
- "node_id": "RA_kwDOCvv-m84DSRTS",
- "name": "actions-runner-linux-arm-2.287.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": 2,
- "created_at": "2022-01-27T16:47:10Z",
- "updated_at": "2022-01-27T16:47:10Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm-2.287.0-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121045",
- "id": 55121045,
- "node_id": "RA_kwDOCvv-m84DSRSV",
- "name": "actions-runner-linux-arm-2.287.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": 80330705,
- "download_count": 13,
- "created_at": "2022-01-27T16:46:35Z",
- "updated_at": "2022-01-27T16:46:38Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm-2.287.0.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121070",
- "id": 55121070,
- "node_id": "RA_kwDOCvv-m84DSRSu",
- "name": "actions-runner-linux-arm64-2.287.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": 30869393,
- "download_count": 10,
- "created_at": "2022-01-27T16:46:50Z",
- "updated_at": "2022-01-27T16:46:51Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm64-2.287.0-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121101",
- "id": 55121101,
- "node_id": "RA_kwDOCvv-m84DSRTN",
- "name": "actions-runner-linux-arm64-2.287.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": 1744058,
- "download_count": 1,
- "created_at": "2022-01-27T16:47:07Z",
- "updated_at": "2022-01-27T16:47:08Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm64-2.287.0-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121088",
- "id": 55121088,
- "node_id": "RA_kwDOCvv-m84DSRTA",
- "name": "actions-runner-linux-arm64-2.287.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": 55809149,
- "download_count": 1,
- "created_at": "2022-01-27T16:47:02Z",
- "updated_at": "2022-01-27T16:47:04Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm64-2.287.0-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121107",
- "id": 55121107,
- "node_id": "RA_kwDOCvv-m84DSRTT",
- "name": "actions-runner-linux-arm64-2.287.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": "2022-01-27T16:47:11Z",
- "updated_at": "2022-01-27T16:47:11Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm64-2.287.0-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121048",
- "id": 55121048,
- "node_id": "RA_kwDOCvv-m84DSRSY",
- "name": "actions-runner-linux-arm64-2.287.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": 84660963,
- "download_count": 52,
- "created_at": "2022-01-27T16:46:38Z",
- "updated_at": "2022-01-27T16:46:40Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-arm64-2.287.0.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121059",
- "id": 55121059,
- "node_id": "RA_kwDOCvv-m84DSRSj",
- "name": "actions-runner-linux-x64-2.287.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": 33205483,
- "download_count": 48,
- "created_at": "2022-01-27T16:46:43Z",
- "updated_at": "2022-01-27T16:46:44Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-x64-2.287.0-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121094",
- "id": 55121094,
- "node_id": "RA_kwDOCvv-m84DSRTG",
- "name": "actions-runner-linux-x64-2.287.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": 1816543,
- "download_count": 32,
- "created_at": "2022-01-27T16:47:05Z",
- "updated_at": "2022-01-27T16:47:05Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-x64-2.287.0-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121074",
- "id": 55121074,
- "node_id": "RA_kwDOCvv-m84DSRSy",
- "name": "actions-runner-linux-x64-2.287.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": 107955978,
- "download_count": 17,
- "created_at": "2022-01-27T16:46:54Z",
- "updated_at": "2022-01-27T16:46:57Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-x64-2.287.0-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121103",
- "id": 55121103,
- "node_id": "RA_kwDOCvv-m84DSRTP",
- "name": "actions-runner-linux-x64-2.287.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": 27,
- "created_at": "2022-01-27T16:47:09Z",
- "updated_at": "2022-01-27T16:47:09Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-x64-2.287.0-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121037",
- "id": 55121037,
- "node_id": "RA_kwDOCvv-m84DSRSN",
- "name": "actions-runner-linux-x64-2.287.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": 139065405,
- "download_count": 3619,
- "created_at": "2022-01-27T16:46:28Z",
- "updated_at": "2022-01-27T16:46:32Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-linux-x64-2.287.0.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121061",
- "id": 55121061,
- "node_id": "RA_kwDOCvv-m84DSRSl",
- "name": "actions-runner-osx-x64-2.287.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": 32554528,
- "download_count": 11,
- "created_at": "2022-01-27T16:46:44Z",
- "updated_at": "2022-01-27T16:46:48Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-osx-x64-2.287.0-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121097",
- "id": 55121097,
- "node_id": "RA_kwDOCvv-m84DSRTJ",
- "name": "actions-runner-osx-x64-2.287.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": 1757613,
- "download_count": 13,
- "created_at": "2022-01-27T16:47:06Z",
- "updated_at": "2022-01-27T16:47:06Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-osx-x64-2.287.0-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121083",
- "id": 55121083,
- "node_id": "RA_kwDOCvv-m84DSRS7",
- "name": "actions-runner-osx-x64-2.287.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": 50536793,
- "download_count": 2,
- "created_at": "2022-01-27T16:46:57Z",
- "updated_at": "2022-01-27T16:46:59Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-osx-x64-2.287.0-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121104",
- "id": 55121104,
- "node_id": "RA_kwDOCvv-m84DSRTQ",
- "name": "actions-runner-osx-x64-2.287.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": 29,
- "created_at": "2022-01-27T16:47:09Z",
- "updated_at": "2022-01-27T16:47:10Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-osx-x64-2.287.0-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121041",
- "id": 55121041,
- "node_id": "RA_kwDOCvv-m84DSRSR",
- "name": "actions-runner-osx-x64-2.287.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": 80959075,
- "download_count": 174,
- "created_at": "2022-01-27T16:46:32Z",
- "updated_at": "2022-01-27T16:46:35Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-osx-x64-2.287.0.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121053",
- "id": 55121053,
- "node_id": "RA_kwDOCvv-m84DSRSd",
- "name": "actions-runner-win-x64-2.287.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": 34275065,
- "download_count": 2,
- "created_at": "2022-01-27T16:46:41Z",
- "updated_at": "2022-01-27T16:46:42Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-win-x64-2.287.0-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121092",
- "id": 55121092,
- "node_id": "RA_kwDOCvv-m84DSRTE",
- "name": "actions-runner-win-x64-2.287.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": 1919089,
- "download_count": 2,
- "created_at": "2022-01-27T16:47:04Z",
- "updated_at": "2022-01-27T16:47:05Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-win-x64-2.287.0-noruntime-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121072",
- "id": 55121072,
- "node_id": "RA_kwDOCvv-m84DSRSw",
- "name": "actions-runner-win-x64-2.287.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": 39617608,
- "download_count": 2,
- "created_at": "2022-01-27T16:46:52Z",
- "updated_at": "2022-01-27T16:46:53Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-win-x64-2.287.0-noruntime.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121102",
- "id": 55121102,
- "node_id": "RA_kwDOCvv-m84DSRTO",
- "name": "actions-runner-win-x64-2.287.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": 15,
- "created_at": "2022-01-27T16:47:08Z",
- "updated_at": "2022-01-27T16:47:08Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-win-x64-2.287.0-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/55121036",
- "id": 55121036,
- "node_id": "RA_kwDOCvv-m84DSRSM",
- "name": "actions-runner-win-x64-2.287.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": 71692096,
- "download_count": 210,
- "created_at": "2022-01-27T16:46:25Z",
- "updated_at": "2022-01-27T16:46:28Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.287.0/actions-runner-win-x64-2.287.0.zip"
- }
- ],
- "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.287.0",
- "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.287.0",
- "body": "## Features\n\n- Add Runner Configuration option to disable auto update `--disableupdate` (#1558)\n- Introduce `GITHUB_ACTIONS_RUNNER_TLS_NO_VERIFY` env variable to skip SSL Cert Verification on the Runner (#1616)\n- Adds support for downloading trimmed versions of the runner when the entire package does not need to be upgraded (#1568)\n\n## Bugs\n- Set Outcome/Conclusion for composite action steps (#1600)\n\n## Misc\n\n- Update `run.sh` to more gracefully handle updates (#1494)\n- Use 8Mb default chunking for File Container Uploads (#1626)\n- Performance improvements in handling large amounts of live logs (#1592)\n- Allow `./svc.sh stop` to exit as soon as runner process exits (#1580)\n- Add additional tracing to help troubleshoot job message corruption (#1587)\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.287.0/actions-runner-win-x64-2.287.0.zip -OutFile actions-runner-win-x64-2.287.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.287.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.287.0/actions-runner-osx-x64-2.287.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.287.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.287.0/actions-runner-linux-x64-2.287.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.287.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.287.0/actions-runner-linux-arm64-2.287.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.287.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.287.0/actions-runner-linux-arm-2.287.0.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.287.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.287.0.zip 73b7a50809e10e1b142b8bcf73c1f399a0da154637f755d297258f30998dcaf2\n- actions-runner-osx-x64-2.287.0.tar.gz c6d05c16600511b70de71e505228cb634b7491a660c4c2984e243a32e1409a6e\n- actions-runner-linux-x64-2.287.0.tar.gz dd310ece5e54f4fc3a72d3bf5949362142f7d68744c59c13dbd901043fc20278\n- actions-runner-linux-arm64-2.287.0.tar.gz 70940998ab0458ec63c1c6fb405ebcaae85e624988145144ac72d49e3a9b63d1\n- actions-runner-linux-arm-2.287.0.tar.gz 44232a6c595a15be6d62c212a50042e4e340381db726ddffa3f8c1084bd4530d\n\n- actions-runner-win-x64-2.287.0-noexternals.zip 4bdbce951ed49019a28d8eec39ac0de96f9c69dec2a9ee7b3e4cb8af0900b99b\n- actions-runner-osx-x64-2.287.0-noexternals.tar.gz 064ed4327a1eba6baeec7007c05a3d74f3be271708f1124c28f664ccb0fa8b06\n- actions-runner-linux-x64-2.287.0-noexternals.tar.gz 046624b329b6cf24177e4b35f2b6948645a5f2f2b709350b634f7b0182bb5c79\n- actions-runner-linux-arm64-2.287.0-noexternals.tar.gz a1a130a75141be05bebfea4ed56db6d8cbcc4b4f258f466c1a6d7340ee019312\n- actions-runner-linux-arm-2.287.0-noexternals.tar.gz 5a70578a836b77877977c7cad884dc761318317e2262789c395cb8ef2097f2fe\n\n- actions-runner-win-x64-2.287.0-noruntime.zip 8bc686a09a75575f10a786107f16966176e56f76c6d16c48994b20497ee4c7df\n- actions-runner-osx-x64-2.287.0-noruntime.tar.gz ee9eee0864e36f1e993e0ec383e6fbad448f67dc15b4e547acdae4e716cb05ba\n- actions-runner-linux-x64-2.287.0-noruntime.tar.gz a2777c9bfdb93dea4e4aa784ef74353b1845ae506f33cb1dc9cc018935379871\n- actions-runner-linux-arm64-2.287.0-noruntime.tar.gz 8f6aaded5047168f54cf2d8bf0b806dea08b694cc2bec7008510bad2290aa27a\n- actions-runner-linux-arm-2.287.0-noruntime.tar.gz ed5ad9e77a39ed57cfdee6f1bceb0777202abfb041a0429d9bfe1883563eb12e\n\n- actions-runner-win-x64-2.287.0-noruntime-noexternals.zip 658c8b4f29884bab11af29b96e1d21ef2aa5751503d4c04c54a2ab6c9a811128\n- actions-runner-osx-x64-2.287.0-noruntime-noexternals.tar.gz 059ab3b06ac25177541a4c5a2c79b2092da0611acfff7fbf901071a0a42dab55\n- actions-runner-linux-x64-2.287.0-noruntime-noexternals.tar.gz fc6fbabf46a7b1e9d0cbfaabb03c0aa249b545c4d54c1ad47a86f703268498db\n- actions-runner-linux-arm64-2.287.0-noruntime-noexternals.tar.gz c5d89f7d6e5f4d5e97aabf3878e60d718d59649e49bc1ead8e1409da2751d045\n- actions-runner-linux-arm-2.287.0-noruntime-noexternals.tar.gz 145d9f91ba307a1a878403dbaa4cb85d93b5f5ab4ee0ba54eaf1c0eef3882dee"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/57139740",
- "assets_url": "https://api.github.com/repos/actions/runner/releases/57139740/assets",
- "upload_url": "https://uploads.github.com/repos/actions/runner/releases/57139740/assets{?name,label}",
- "html_url": "https://github.com/actions/runner/releases/tag/v2.286.1",
- "id": 57139740,
- "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-m84DZ-Ic",
- "tag_name": "v2.286.1",
- "target_commitish": "f4a2c808ebfde6798803139c41783fe2bf18a9a8",
- "name": "v2.286.1",
- "draft": false,
- "prerelease": false,
- "created_at": "2022-01-14T17:03:58Z",
- "published_at": "2022-01-14T17:10:51Z",
- "assets": [
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989067",
- "id": 53989067,
- "node_id": "RA_kwDOCvv-m84DN87L",
- "name": "actions-runner-linux-arm-2.286.1-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": 31099345,
- "download_count": 7,
- "created_at": "2022-01-14T17:11:20Z",
- "updated_at": "2022-01-14T17:11:22Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm-2.286.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989085",
- "id": 53989085,
- "node_id": "RA_kwDOCvv-m84DN87d",
- "name": "actions-runner-linux-arm-2.286.1-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": 1711711,
- "download_count": 2,
- "created_at": "2022-01-14T17:11:42Z",
- "updated_at": "2022-01-14T17:11:43Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm-2.286.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989078",
- "id": 53989078,
- "node_id": "RA_kwDOCvv-m84DN87W",
- "name": "actions-runner-linux-arm-2.286.1-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": 51219561,
- "download_count": 13,
- "created_at": "2022-01-14T17:11:34Z",
- "updated_at": "2022-01-14T17:11:36Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm-2.286.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989091",
- "id": 53989091,
- "node_id": "RA_kwDOCvv-m84DN87j",
- "name": "actions-runner-linux-arm-2.286.1-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": 11,
- "created_at": "2022-01-14T17:11:47Z",
- "updated_at": "2022-01-14T17:11:47Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm-2.286.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989053",
- "id": 53989053,
- "node_id": "RA_kwDOCvv-m84DN869",
- "name": "actions-runner-linux-arm-2.286.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": 80340182,
- "download_count": 472,
- "created_at": "2022-01-14T17:11:06Z",
- "updated_at": "2022-01-14T17:11:09Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm-2.286.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989068",
- "id": 53989068,
- "node_id": "RA_kwDOCvv-m84DN87M",
- "name": "actions-runner-linux-arm64-2.286.1-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": 30845315,
- "download_count": 625,
- "created_at": "2022-01-14T17:11:23Z",
- "updated_at": "2022-01-14T17:11:24Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm64-2.286.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989086",
- "id": 53989086,
- "node_id": "RA_kwDOCvv-m84DN87e",
- "name": "actions-runner-linux-arm64-2.286.1-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": 1720690,
- "download_count": 3,
- "created_at": "2022-01-14T17:11:43Z",
- "updated_at": "2022-01-14T17:11:44Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm64-2.286.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989079",
- "id": 53989079,
- "node_id": "RA_kwDOCvv-m84DN87X",
- "name": "actions-runner-linux-arm64-2.286.1-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": 55803601,
- "download_count": 1,
- "created_at": "2022-01-14T17:11:37Z",
- "updated_at": "2022-01-14T17:11:39Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm64-2.286.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989092",
- "id": 53989092,
- "node_id": "RA_kwDOCvv-m84DN87k",
- "name": "actions-runner-linux-arm64-2.286.1-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": 11,
- "created_at": "2022-01-14T17:11:47Z",
- "updated_at": "2022-01-14T17:11:47Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm64-2.286.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989054",
- "id": 53989054,
- "node_id": "RA_kwDOCvv-m84DN86-",
- "name": "actions-runner-linux-arm64-2.286.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": 84659905,
- "download_count": 12274,
- "created_at": "2022-01-14T17:11:10Z",
- "updated_at": "2022-01-14T17:11:13Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-arm64-2.286.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989064",
- "id": 53989064,
- "node_id": "RA_kwDOCvv-m84DN87I",
- "name": "actions-runner-linux-x64-2.286.1-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": 33184384,
- "download_count": 3938,
- "created_at": "2022-01-14T17:11:16Z",
- "updated_at": "2022-01-14T17:11:18Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-x64-2.286.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989082",
- "id": 53989082,
- "node_id": "RA_kwDOCvv-m84DN87a",
- "name": "actions-runner-linux-x64-2.286.1-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": 1796358,
- "download_count": 2797,
- "created_at": "2022-01-14T17:11:40Z",
- "updated_at": "2022-01-14T17:11:41Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-x64-2.286.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989071",
- "id": 53989071,
- "node_id": "RA_kwDOCvv-m84DN87P",
- "name": "actions-runner-linux-x64-2.286.1-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": 107950542,
- "download_count": 2633,
- "created_at": "2022-01-14T17:11:27Z",
- "updated_at": "2022-01-14T17:11:31Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-x64-2.286.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989089",
- "id": 53989089,
- "node_id": "RA_kwDOCvv-m84DN87h",
- "name": "actions-runner-linux-x64-2.286.1-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": 2210,
- "created_at": "2022-01-14T17:11:45Z",
- "updated_at": "2022-01-14T17:11:45Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-x64-2.286.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989047",
- "id": 53989047,
- "node_id": "RA_kwDOCvv-m84DN863",
- "name": "actions-runner-linux-x64-2.286.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": 139074773,
- "download_count": 282760,
- "created_at": "2022-01-14T17:10:56Z",
- "updated_at": "2022-01-14T17:11:01Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-linux-x64-2.286.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989065",
- "id": 53989065,
- "node_id": "RA_kwDOCvv-m84DN87J",
- "name": "actions-runner-osx-x64-2.286.1-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": 32540016,
- "download_count": 58,
- "created_at": "2022-01-14T17:11:18Z",
- "updated_at": "2022-01-14T17:11:20Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-osx-x64-2.286.1-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989083",
- "id": 53989083,
- "node_id": "RA_kwDOCvv-m84DN87b",
- "name": "actions-runner-osx-x64-2.286.1-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": 1744096,
- "download_count": 80,
- "created_at": "2022-01-14T17:11:42Z",
- "updated_at": "2022-01-14T17:11:42Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-osx-x64-2.286.1-noruntime-noexternals.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989076",
- "id": 53989076,
- "node_id": "RA_kwDOCvv-m84DN87U",
- "name": "actions-runner-osx-x64-2.286.1-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": 50529786,
- "download_count": 2,
- "created_at": "2022-01-14T17:11:31Z",
- "updated_at": "2022-01-14T17:11:33Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-osx-x64-2.286.1-noruntime.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989090",
- "id": 53989090,
- "node_id": "RA_kwDOCvv-m84DN87i",
- "name": "actions-runner-osx-x64-2.286.1-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": 173,
- "created_at": "2022-01-14T17:11:46Z",
- "updated_at": "2022-01-14T17:11:46Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-osx-x64-2.286.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989051",
- "id": 53989051,
- "node_id": "RA_kwDOCvv-m84DN867",
- "name": "actions-runner-osx-x64-2.286.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": 80944080,
- "download_count": 4818,
- "created_at": "2022-01-14T17:11:02Z",
- "updated_at": "2022-01-14T17:11:05Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-osx-x64-2.286.1.tar.gz"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989059",
- "id": 53989059,
- "node_id": "RA_kwDOCvv-m84DN87D",
- "name": "actions-runner-win-x64-2.286.1-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": 34262598,
- "download_count": 40,
- "created_at": "2022-01-14T17:11:14Z",
- "updated_at": "2022-01-14T17:11:15Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-win-x64-2.286.1-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989081",
- "id": 53989081,
- "node_id": "RA_kwDOCvv-m84DN87Z",
- "name": "actions-runner-win-x64-2.286.1-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": 1906622,
- "download_count": 44,
- "created_at": "2022-01-14T17:11:39Z",
- "updated_at": "2022-01-14T17:11:40Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-win-x64-2.286.1-noruntime-noexternals.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989069",
- "id": 53989069,
- "node_id": "RA_kwDOCvv-m84DN87N",
- "name": "actions-runner-win-x64-2.286.1-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": 39605141,
- "download_count": 40,
- "created_at": "2022-01-14T17:11:25Z",
- "updated_at": "2022-01-14T17:11:26Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-win-x64-2.286.1-noruntime.zip"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989088",
- "id": 53989088,
- "node_id": "RA_kwDOCvv-m84DN87g",
- "name": "actions-runner-win-x64-2.286.1-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": 109,
- "created_at": "2022-01-14T17:11:44Z",
- "updated_at": "2022-01-14T17:11:45Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-win-x64-2.286.1-trimmedpackages.json"
- },
- {
- "url": "https://api.github.com/repos/actions/runner/releases/assets/53989046",
- "id": 53989046,
- "node_id": "RA_kwDOCvv-m84DN862",
- "name": "actions-runner-win-x64-2.286.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": 71681706,
- "download_count": 15179,
- "created_at": "2022-01-14T17:10:52Z",
- "updated_at": "2022-01-14T17:10:56Z",
- "browser_download_url": "https://github.com/actions/runner/releases/download/v2.286.1/actions-runner-win-x64-2.286.1.zip"
- }
- ],
- "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.286.1",
- "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.286.1",
- "body": "## Features\n\n- N/A\n\n## Bugs\n\n- Fix breaking change in dotnet 6 around globalization-invariant. (#1609)\n\n## Misc\n\n- N/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.286.1/actions-runner-win-x64-2.286.1.zip -OutFile actions-runner-win-x64-2.286.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.286.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.286.1/actions-runner-osx-x64-2.286.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.286.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.286.1/actions-runner-linux-x64-2.286.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.286.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.286.1/actions-runner-linux-arm64-2.286.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.286.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.286.1/actions-runner-linux-arm-2.286.1.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.286.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.286.1.zip 25244d08718eb35d9b68dc13954727a6d8fdcd5bbb29bb5601c46694e91705de\n- actions-runner-osx-x64-2.286.1.tar.gz 46fe77f587d74b7c0f4f7c4efb917b568749d813ed3a4f826d875877de2e7d8d\n- actions-runner-linux-x64-2.286.1.tar.gz 7b1509c353ea4e6561b2ed2e916dcbf2a0d8ce21172edd9f8c846a20b6462cd6\n- actions-runner-linux-arm64-2.286.1.tar.gz 9a0519d1551d167bd51f7591b219bc789d4d9c03994bb6666f337723387fc806\n- actions-runner-linux-arm-2.286.1.tar.gz bc97072fd3380e6cb941185b946537f34d0b0dda8d11b1fa67d7411b3d354e08\n\n- actions-runner-win-x64-2.286.1-noexternals.zip 490a53fe6c0419f8c5c631095469258aca1a43a49d3682b0dde9d71a10a65ea0\n- actions-runner-osx-x64-2.286.1-noexternals.tar.gz 574da5791a63b719a4ff9bf82cf7a4573cf9c6bf9d0aad0ad7562bd736e3a575\n- actions-runner-linux-x64-2.286.1-noexternals.tar.gz 60df8aa2b9efb555fb72c86ddcbfefbe9db24890794f7ec8440d7ba717dd7da3\n- actions-runner-linux-arm64-2.286.1-noexternals.tar.gz dff9526802184e72097d96becbfd9b08b60fa5df6032d0262684eb17d777489c\n- actions-runner-linux-arm-2.286.1-noexternals.tar.gz c606734e5737421631c3b6927eabe063ce6d51e89de6326c20f6c772a9ebfe36\n\n- actions-runner-win-x64-2.286.1-noruntime.zip c9fc27fd241f94c07f745d4c505b42615c66312a891ab34cac1d58ae8d527ccb\n- actions-runner-osx-x64-2.286.1-noruntime.tar.gz 2a2dbb6e6124e22ba95a0ebebf0ce0690324a25bf84bf48348477b9fc14569fb\n- actions-runner-linux-x64-2.286.1-noruntime.tar.gz 1621856f6b278dd31822183d4e6bf8944aa8662b96c75590852a4ee57f8d8382\n- actions-runner-linux-arm64-2.286.1-noruntime.tar.gz 010674fa0c67d38b44192f39e4f14191f0ba7b82ddcb0c15aea8074cdb379ff1\n- actions-runner-linux-arm-2.286.1-noruntime.tar.gz 845b3a9f1ec3ee83c4adccc9ba4dc24387f1ca638385bcdd6323b772c02e6a43\n\n- actions-runner-win-x64-2.286.1-noruntime-noexternals.zip 8ef3e118478089f3267e7df8f0f103790ad0579c41986cc43ed46e495f8b79fc\n- actions-runner-osx-x64-2.286.1-noruntime-noexternals.tar.gz 4d402bbd98feb22924394cb5bdfb57af6f7e606e06b05e10f84dff7228b9bb6f\n- actions-runner-linux-x64-2.286.1-noruntime-noexternals.tar.gz 6a6e6c2100b96d898de409221c9f830bcdc2f606ba26e3033d6bc57d97d768a3\n- actions-runner-linux-arm64-2.286.1-noruntime-noexternals.tar.gz 6ecae60867010ff7e13f28ae8266cdde0412d1613acaf85b943e7e62c733282c\n- actions-runner-linux-arm-2.286.1-noruntime-noexternals.tar.gz b97387045edfd681e2ffe19a3e371da2b756e5dfeed11cad3e976012e9b6cb7f"
- },
- {
- "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": false,
- "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": 7,
- "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": 12,
- "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": 8,
- "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": 25,
- "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": 639,
- "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": 1111,
- "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": 2,
- "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": 4,
- "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": 13,
- "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": 6040,
- "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": 6782,
- "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": 4381,
- "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": 4440,
- "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": 3196,
- "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": 416675,
- "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": 47,
- "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": 46,
- "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": 6,
- "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": 118,
- "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": 5034,
- "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": 42,
- "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": 34,
- "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": 29,
- "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": 73,
- "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": 14616,
- "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": 4549,
- "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": 11934,
- "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": 471450,
- "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": 10724,
- "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": 23901,
- "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": 5639,
- "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": 2936,
- "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": 147789,
- "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": 2357,
- "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": 6972,
- "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": 2966,
- "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": 9928,
- "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": 472797,
- "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": 8691,
- "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": 24121,
- "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": 5895,
- "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": 10299,
- "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": 287885,
- "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": 8744,
- "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": 33702,
- "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": 113248,
- "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": 3264,
- "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": 1601,
- "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": 9078,
- "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": 139899,
- "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": 5504,
- "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": 19783,
- "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": 296,
- "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": 1548,
- "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": 55318,
- "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": 7485,
- "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": 129,
- "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": 16101,
- "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": 2999,
- "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": 1235,
- "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": 3568,
- "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": 190205,
- "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": 32325,
- "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": 9530,
- "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": 5076,
- "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": 280276,
- "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": 3716,
- "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": 20872,
- "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": 181,
- "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": 1857,
- "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": 53501,
- "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": 13539,
- "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": 61626,
- "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": 5460,
- "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": 11168,
- "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": 149389,
- "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": 13049,
- "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": 17287,
- "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": 4097,
- "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": 18409,
- "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": 975597,
- "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": 12335,
- "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": 126631,
- "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": 10735,
- "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": 23361,
- "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": 426112,
- "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": 17485,
- "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": 54028,
- "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": 5692,
- "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": 227310,
- "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": 16493,
- "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": 43812,
- "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": 19634,
- "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": 7154,
- "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": 222083,
- "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": 4037,
- "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": 20323,
- "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": 11621,
- "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": 196446,
- "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": 24104,
- "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": 35863,
- "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)"
- }
-]
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-releases-no-x64.json b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-releases-no-x64.json
new file mode 100644
index 00000000..724c6bcd
--- /dev/null
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-releases-no-x64.json
@@ -0,0 +1,732 @@
+{
+ "url": "https://api.github.com/repos/actions/runner/releases/76625279",
+ "assets_url": "https://api.github.com/repos/actions/runner/releases/76625279/assets",
+ "upload_url": "https://uploads.github.com/repos/actions/runner/releases/76625279/assets{?name,label}",
+ "html_url": "https://github.com/actions/runner/releases/tag/v2.296.2",
+ "id": 76625279,
+ "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-m84EkTV_",
+ "tag_name": "v2.296.2",
+ "target_commitish": "21c30edf1e7a80e041649848ea1d91b885a8762e",
+ "name": "v2.296.2",
+ "draft": false,
+ "prerelease": false,
+ "created_at": "2022-09-08T17:38:20Z",
+ "published_at": "2022-09-08T17:46:24Z",
+ "assets": [
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269975",
+ "id": 77269975,
+ "node_id": "RA_kwDOCvv-m84EmwvX",
+ "name": "actions-runner-linux-arm-2.296.2-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": 31333284,
+ "download_count": 20,
+ "created_at": "2022-09-08T17:46:59Z",
+ "updated_at": "2022-09-08T17:47:00Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270004",
+ "id": 77270004,
+ "node_id": "RA_kwDOCvv-m84Emwv0",
+ "name": "actions-runner-linux-arm-2.296.2-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": 1786269,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:22Z",
+ "updated_at": "2022-09-08T17:47:23Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269998",
+ "id": 77269998,
+ "node_id": "RA_kwDOCvv-m84Emwvu",
+ "name": "actions-runner-linux-arm-2.296.2-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": 52630075,
+ "download_count": 16,
+ "created_at": "2022-09-08T17:47:14Z",
+ "updated_at": "2022-09-08T17:47:16Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270010",
+ "id": 77270010,
+ "node_id": "RA_kwDOCvv-m84Emwv6",
+ "name": "actions-runner-linux-arm-2.296.2-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": 27,
+ "created_at": "2022-09-08T17:47:27Z",
+ "updated_at": "2022-09-08T17:47:28Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269924",
+ "id": 77269924,
+ "node_id": "RA_kwDOCvv-m84Emwuk",
+ "name": "actions-runner-linux-arm-2.296.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": 81903612,
+ "download_count": 1753,
+ "created_at": "2022-09-08T17:46:39Z",
+ "updated_at": "2022-09-08T17:46:45Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269986",
+ "id": 77269986,
+ "node_id": "RA_kwDOCvv-m84Emwvi",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 31080318,
+ "download_count": 694,
+ "created_at": "2022-09-08T17:47:01Z",
+ "updated_at": "2022-09-08T17:47:03Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270005",
+ "id": 77270005,
+ "node_id": "RA_kwDOCvv-m84Emwv1",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 1796425,
+ "download_count": 13,
+ "created_at": "2022-09-08T17:47:23Z",
+ "updated_at": "2022-09-08T17:47:24Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269999",
+ "id": 77269999,
+ "node_id": "RA_kwDOCvv-m84Emwvv",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 57311409,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:16Z",
+ "updated_at": "2022-09-08T17:47:18Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270011",
+ "id": 77270011,
+ "node_id": "RA_kwDOCvv-m84Emwv7",
+ "name": "actions-runner-linux-arm64-2.296.2-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": 28,
+ "created_at": "2022-09-08T17:47:28Z",
+ "updated_at": "2022-09-08T17:47:29Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269942",
+ "id": 77269942,
+ "node_id": "RA_kwDOCvv-m84Emwu2",
+ "name": "actions-runner-linux-arm64-2.296.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": 86311556,
+ "download_count": 21667,
+ "created_at": "2022-09-08T17:46:46Z",
+ "updated_at": "2022-09-08T17:46:49Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-linux-arm64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269970",
+ "id": 77269970,
+ "node_id": "RA_kwDOCvv-m84EmwvS",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 30874139,
+ "download_count": 15,
+ "created_at": "2022-09-08T17:46:56Z",
+ "updated_at": "2022-09-08T17:46:58Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270003",
+ "id": 77270003,
+ "node_id": "RA_kwDOCvv-m84Emwvz",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 1801192,
+ "download_count": 14,
+ "created_at": "2022-09-08T17:47:22Z",
+ "updated_at": "2022-09-08T17:47:22Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269997",
+ "id": 77269997,
+ "node_id": "RA_kwDOCvv-m84Emwvt",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 30560082,
+ "download_count": 12,
+ "created_at": "2022-09-08T17:47:12Z",
+ "updated_at": "2022-09-08T17:47:13Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270009",
+ "id": 77270009,
+ "node_id": "RA_kwDOCvv-m84Emwv5",
+ "name": "actions-runner-osx-arm64-2.296.2-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": 28,
+ "created_at": "2022-09-08T17:47:26Z",
+ "updated_at": "2022-09-08T17:47:27Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269915",
+ "id": 77269915,
+ "node_id": "RA_kwDOCvv-m84Emwub",
+ "name": "actions-runner-osx-arm64-2.296.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": 59243964,
+ "download_count": 1257,
+ "created_at": "2022-09-08T17:46:36Z",
+ "updated_at": "2022-09-08T17:46:38Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-arm64-2.296.2.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269968",
+ "id": 77269968,
+ "node_id": "RA_kwDOCvv-m84EmwvQ",
+ "name": "actions-runner-osx-x64-2.296.2-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": 32793559,
+ "download_count": 691,
+ "created_at": "2022-09-08T17:46:54Z",
+ "updated_at": "2022-09-08T17:46:56Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270002",
+ "id": 77270002,
+ "node_id": "RA_kwDOCvv-m84Emwvy",
+ "name": "actions-runner-osx-x64-2.296.2-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": 1802800,
+ "download_count": 1109,
+ "created_at": "2022-09-08T17:47:21Z",
+ "updated_at": "2022-09-08T17:47:21Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noruntime-noexternals.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269996",
+ "id": 77269996,
+ "node_id": "RA_kwDOCvv-m84Emwvs",
+ "name": "actions-runner-osx-x64-2.296.2-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": 53007086,
+ "download_count": 15,
+ "created_at": "2022-09-08T17:47:10Z",
+ "updated_at": "2022-09-08T17:47:12Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-noruntime.tar.gz"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77270008",
+ "id": 77270008,
+ "node_id": "RA_kwDOCvv-m84Emwv4",
+ "name": "actions-runner-osx-x64-2.296.2-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": 2843,
+ "created_at": "2022-09-08T17:47:26Z",
+ "updated_at": "2022-09-08T17:47:26Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2-trimmedpackages.json"
+ },
+ {
+ "url": "https://api.github.com/repos/actions/runner/releases/assets/77269912",
+ "id": 77269912,
+ "node_id": "RA_kwDOCvv-m84EmwuY",
+ "name": "actions-runner-osx-x64-2.296.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": 83620713,
+ "download_count": 11078,
+ "created_at": "2022-09-08T17:46:33Z",
+ "updated_at": "2022-09-08T17:46:36Z",
+ "browser_download_url": "https://github.com/actions/runner/releases/download/v2.296.2/actions-runner-osx-x64-2.296.2.tar.gz"
+ }
+ ],
+ "tarball_url": "https://api.github.com/repos/actions/runner/tarball/v2.296.2",
+ "zipball_url": "https://api.github.com/repos/actions/runner/zipball/v2.296.2",
+ "body": "## Bugs\n- Fixed an issue where self hosted environments had their docker env's overwritten (#2107)\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.296.2/actions-runner-win-x64-2.296.2.zip -OutFile actions-runner-win-x64-2.296.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.296.2.zip\", \"$PWD\")\n```\n\n## OSX 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.296.2/actions-runner-osx-x64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-x64-2.296.2.tar.gz\n```\n\n## OSX arm64 (Apple silicon)\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.296.2/actions-runner-osx-arm64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-osx-arm64-2.296.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.296.2/actions-runner-linux-x64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-x64-2.296.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.296.2/actions-runner-linux-arm64-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm64-2.296.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.296.2/actions-runner-linux-arm-2.296.2.tar.gz\n# Extract the installer\ntar xzf ./actions-runner-linux-arm-2.296.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.296.2.zip 96d03cf54dbfe2e016bd2aa5a08ffbd2a803b1899b0ae3eedf4bd18e370f14a4\n- actions-runner-osx-x64-2.296.2.tar.gz 033b78d42f476f6ba55f3a083304221a21319da9f7543e82842209c5b9c27fe9\n- actions-runner-osx-arm64-2.296.2.tar.gz ae7d0edbd7e0d5ebcbb6d5066d432d21731160b0a1148373a608c077bc9b80ca\n- actions-runner-linux-x64-2.296.2.tar.gz 34a8f34956cdacd2156d4c658cce8dd54c5aef316a16bbbc95eb3ca4fd76429a\n- actions-runner-linux-arm64-2.296.2.tar.gz 0297855418398e0efcc487fe3dc581469c38534252f713fba22a603037eaa6b0\n- actions-runner-linux-arm-2.296.2.tar.gz c34088b09bb0301bf16876909c4ff56be52d51992e0b4600f7cb2525046e5214\n\n- actions-runner-win-x64-2.296.2-noexternals.zip 1685d87ef74ced74926798751b883eb174a1124c1e59034343574e62b60617b4\n- actions-runner-osx-x64-2.296.2-noexternals.tar.gz e4384e69c5d15bccc3554965c1f7c894b0128e30be9a7273f89a21df4e347a7c\n- actions-runner-osx-arm64-2.296.2-noexternals.tar.gz 27b375a5b6183afc21f971708be86ceabc6c040cde24964b621e64a104b0a3df\n- actions-runner-linux-x64-2.296.2-noexternals.tar.gz 12276c22535184972b691333ee019893a5135488c42cda0746abbdd1434daaa4\n- actions-runner-linux-arm64-2.296.2-noexternals.tar.gz ad51fe591b3582b09f187152f41d7ce3bd86cfd2c5b132c90d9c513085408e7b\n- actions-runner-linux-arm-2.296.2-noexternals.tar.gz 08291eae8ec806e57412fe54639fc6c83002a813a352ca8e255ac8e8b6e2e33b\n\n- actions-runner-win-x64-2.296.2-noruntime.zip f8b28ac0dce7f178adb76db343a49ffb98cf075b554a393a7d03942d8996dcf2\n- actions-runner-osx-x64-2.296.2-noruntime.tar.gz 28169dfa52b7aa7871b0fdf30e20078126989a57c7619b976672a3d348c7cb7d\n- actions-runner-osx-arm64-2.296.2-noruntime.tar.gz cc5fe8ad88412749cc37112f6066da7b07bcadf3694e4089cef6e2e3a247cca1\n- actions-runner-linux-x64-2.296.2-noruntime.tar.gz d9707270cfa527287049df8dc13b94cb5eb86f15553b15142bd57738a33427ed\n- actions-runner-linux-arm64-2.296.2-noruntime.tar.gz c6e7b1ee31295ddea7d906fd6987548395a7dcb0cd0220f787dcd035973a99b3\n- actions-runner-linux-arm-2.296.2-noruntime.tar.gz 4de0827c0aecaa37087082904f8ac95555463bd968cc6c0c62fc76dc6acbdd2b\n\n- actions-runner-win-x64-2.296.2-noruntime-noexternals.zip 58cebad95fc921cef15c71a05adb03065ba7e1ed01deef047239756d0e705251\n- actions-runner-osx-x64-2.296.2-noruntime-noexternals.tar.gz fde46e40794ca21fe9b920f4fbbd77691f72033bd7dd6e94ed2728536ec4444f\n- actions-runner-osx-arm64-2.296.2-noruntime-noexternals.tar.gz 05e96fa74c448b773980e56b3ac552411c5d8fe50845e5d74eba4054eef5305e\n- actions-runner-linux-x64-2.296.2-noruntime-noexternals.tar.gz e54c08b4e055e60c91d7ffcd58a500c8a911d8909c6ddbb7c6442daf71a933d8\n- actions-runner-linux-arm64-2.296.2-noruntime-noexternals.tar.gz dbc1c3298faf8b87698a14de880bb5d8d60a1c5a6d2a6a4cf395b0c3722a31ba\n- actions-runner-linux-arm-2.296.2-noruntime-noexternals.tar.gz ae8b714bfa17acf5d144b7cac78df9938f1613ab060275b844dc3254e7ed65c0",
+ "reactions": {
+ "url": "https://api.github.com/repos/actions/runner/releases/76625279/reactions",
+ "total_count": 2,
+ "+1": 2,
+ "-1": 0,
+ "laugh": 0,
+ "hooray": 0,
+ "confused": 0,
+ "heart": 0,
+ "rocket": 0,
+ "eyes": 0
+ }
+}
diff --git a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock
index 08a99a66..3eec723c 100644
--- a/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock
+++ b/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock
@@ -1274,10 +1274,10 @@ available-typed-arrays@^1.0.5:
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
-aws-sdk@^2.1216.0:
- version "2.1216.0"
- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1216.0.tgz#d2be6259f6374b214f9ea6a665b015d5ba54cdb5"
- integrity sha512-sCgkIc9ZdFyf4dImsbRx+139gw9A6Xy924wwP4rAVrYeSbudBY0jDO4wJBAwUpPKqX5cxjSLmjP7gOi2CDwhjw==
+aws-sdk@^2.1219.0:
+ version "2.1219.0"
+ resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1219.0.tgz#96d056fc4ebfd8417308f18a34f127dbaafc022e"
+ integrity sha512-KOGA0E3wZ/Zom1VDAd4ttsaq2LAVECXdHUs/i8OyJkuR3vSvmKQa/BOH4baIBNt4VMS062FhPA29UtT1YPTlwQ==
dependencies:
buffer "4.9.2"
events "1.1.1"
diff --git a/modules/runner-binaries-syncer/runner-binaries-syncer.tf b/modules/runner-binaries-syncer/runner-binaries-syncer.tf
index 92890250..76c931ec 100644
--- a/modules/runner-binaries-syncer/runner-binaries-syncer.tf
+++ b/modules/runner-binaries-syncer/runner-binaries-syncer.tf
@@ -23,15 +23,14 @@ resource "aws_lambda_function" "syncer" {
environment {
variables = {
- GITHUB_RUNNER_ALLOW_PRERELEASE_BINARIES = var.runner_allow_prerelease_binaries
- GITHUB_RUNNER_ARCHITECTURE = var.runner_architecture
- GITHUB_RUNNER_OS = local.gh_binary_os_label[var.runner_os]
- LOG_LEVEL = var.log_level
- LOG_TYPE = var.log_type
- S3_BUCKET_NAME = aws_s3_bucket.action_dist.id
- S3_OBJECT_KEY = local.action_runner_distribution_object_key
- S3_SSE_ALGORITHM = try(var.server_side_encryption_configuration.rule.apply_server_side_encryption_by_default.sse_algorithm, null)
- S3_SSE_KMS_KEY_ID = try(var.server_side_encryption_configuration.rule.apply_server_side_encryption_by_default.kms_master_key_id, null)
+ GITHUB_RUNNER_ARCHITECTURE = var.runner_architecture
+ GITHUB_RUNNER_OS = local.gh_binary_os_label[var.runner_os]
+ LOG_LEVEL = var.log_level
+ LOG_TYPE = var.log_type
+ S3_BUCKET_NAME = aws_s3_bucket.action_dist.id
+ S3_OBJECT_KEY = local.action_runner_distribution_object_key
+ S3_SSE_ALGORITHM = try(var.server_side_encryption_configuration.rule.apply_server_side_encryption_by_default.sse_algorithm, null)
+ S3_SSE_KMS_KEY_ID = try(var.server_side_encryption_configuration.rule.apply_server_side_encryption_by_default.kms_master_key_id, null)
}
}
diff --git a/modules/runner-binaries-syncer/variables.tf b/modules/runner-binaries-syncer/variables.tf
index b0de0c0d..f085897d 100644
--- a/modules/runner-binaries-syncer/variables.tf
+++ b/modules/runner-binaries-syncer/variables.tf
@@ -103,9 +103,14 @@ variable "logging_kms_key_id" {
}
variable "runner_allow_prerelease_binaries" {
- description = "Allow the runners to update to prerelease binaries."
+ description = "(Deprecated, no longer used), allow the runners to update to prerelease binaries."
type = bool
- default = false
+ default = null
+
+ validation {
+ condition = var.runner_allow_prerelease_binaries == null
+ error_message = "The \"runner_allow_prerelease_binaries\" variable is no longer used. GitHub runners are not released as pre-release, only releases should be used."
+ }
}
variable "lambda_s3_bucket" {
@@ -196,4 +201,4 @@ variable "lambda_architecture" {
condition = contains(["arm64", "x86_64"], var.lambda_architecture)
error_message = "`lambda_architecture` value is not valid, valid values are: `arm64` and `x86_64`."
}
-}
\ No newline at end of file
+}
diff --git a/modules/runners/lambdas/runners/package.json b/modules/runners/lambdas/runners/package.json
index 8205c487..c4939e30 100644
--- a/modules/runners/lambdas/runners/package.json
+++ b/modules/runners/lambdas/runners/package.json
@@ -17,8 +17,8 @@
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
- "@types/aws-lambda": "^8.10.102",
- "@types/express": "^4.17.11",
+ "@types/aws-lambda": "^8.10.104",
+ "@types/express": "^4.17.14",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
@@ -27,7 +27,7 @@
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"jest-mock": "^29.0.3",
- "jest-mock-extended": "^2.0.7",
+ "jest-mock-extended": "^3.0.1",
"moment-timezone": "^0.5.37",
"nock": "^13.2.9",
"prettier": "2.7.1",
@@ -39,13 +39,13 @@
"@aws-sdk/client-ssm": "^3.171.0",
"@octokit/auth-app": "4.0.5",
"@octokit/rest": "^19.0.4",
- "@octokit/types": "^7.3.1",
- "@types/aws-lambda": "^8.10.102",
- "@types/express": "^4.17.11",
+ "@octokit/types": "^7.5.0",
+ "@types/aws-lambda": "^8.10.104",
+ "@types/express": "^4.17.14",
"@types/node": "^18.7.18",
- "aws-sdk": "^2.1216.0",
+ "aws-sdk": "^2.1221.0",
"cron-parser": "^4.6.0",
- "tslog": "^3.3.3",
- "typescript": "^4.7.4"
+ "tslog": "^3.3.4",
+ "typescript": "^4.8.3"
}
}
diff --git a/modules/runners/lambdas/runners/yarn.lock b/modules/runners/lambdas/runners/yarn.lock
index e1560c97..6957c88d 100644
--- a/modules/runners/lambdas/runners/yarn.lock
+++ b/modules/runners/lambdas/runners/yarn.lock
@@ -1465,10 +1465,10 @@
resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0"
integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==
-"@octokit/openapi-types@^13.9.1":
- version "13.9.1"
- resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-13.9.1.tgz#433d8c8f441ef031f625131360fe47324ae28457"
- integrity sha512-98zOxAAR8MDHjXI2xGKgn/qkZLwfcNjHka0baniuEpN1fCv3kDJeh5qc0mBwim5y31eaPaYer9QikzwOkQq3wQ==
+"@octokit/openapi-types@^13.11.0":
+ version "13.12.0"
+ resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-13.12.0.tgz#cd49f28127ee06ee3edc6f2b5f5648c7332f6014"
+ integrity sha512-1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==
"@octokit/plugin-paginate-rest@^4.0.0":
version "4.0.0"
@@ -1549,12 +1549,12 @@
dependencies:
"@octokit/openapi-types" "^12.11.0"
-"@octokit/types@^7.0.0", "@octokit/types@^7.3.1":
- version "7.3.1"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-7.3.1.tgz#f25aa9ef3566dac48b7a8527059cfdc962013d0a"
- integrity sha512-Vefohn8pHGFYWbSc6du0wXMK/Pmy6h0H4lttBw5WqquEuxjdXwyYX07CeZpJDkzSzpdKxBoWRNuDJGTE+FvtqA==
+"@octokit/types@^7.0.0", "@octokit/types@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@octokit/types/-/types-7.5.0.tgz#85646021bd618467b7cc465d9734b3f2878c9fae"
+ integrity sha512-aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==
dependencies:
- "@octokit/openapi-types" "^13.9.1"
+ "@octokit/openapi-types" "^13.11.0"
"@sinclair/typebox@^0.24.1":
version "0.24.20"
@@ -1613,10 +1613,10 @@
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e"
integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==
-"@types/aws-lambda@^8.10.102":
- version "8.10.102"
- resolved "https://registry.yarnpkg.com/@types/aws-lambda/-/aws-lambda-8.10.102.tgz#d2402224ec30cdddfb669005c25b6ee01fd6f5be"
- integrity sha512-BT05v46n9KtSHa9SgGuOvm49eSruJ9utD8iNXpdpuUVYk8wOcqmm1LEzpNRkrXxD0CULc38sdLpk6q3Wa2WOwg==
+"@types/aws-lambda@^8.10.104":
+ version "8.10.104"
+ resolved "https://registry.yarnpkg.com/@types/aws-lambda/-/aws-lambda-8.10.104.tgz#01ec1d55a08bdf1201150d9ecae39ff7cca9ff4a"
+ integrity sha512-HXZJH8aBa06re9NCtFudOr21izYZycgXIVjd8vFBSNSf6Ca4GYD77TfKqwYgcDqv4olqj5KK+Ks7Xi5IXFbNGA==
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
version "7.1.18"
@@ -1680,10 +1680,10 @@
"@types/qs" "*"
"@types/range-parser" "*"
-"@types/express@^4.17.11":
- version "4.17.13"
- resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034"
- integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==
+"@types/express@^4.17.14":
+ version "4.17.14"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.14.tgz#143ea0557249bc1b3b54f15db4c81c3d4eb3569c"
+ integrity sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==
dependencies:
"@types/body-parser" "*"
"@types/express-serve-static-core" "^4.17.18"
@@ -2024,10 +2024,10 @@ available-typed-arrays@^1.0.5:
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
-aws-sdk@^2.1216.0:
- version "2.1216.0"
- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1216.0.tgz#d2be6259f6374b214f9ea6a665b015d5ba54cdb5"
- integrity sha512-sCgkIc9ZdFyf4dImsbRx+139gw9A6Xy924wwP4rAVrYeSbudBY0jDO4wJBAwUpPKqX5cxjSLmjP7gOi2CDwhjw==
+aws-sdk@^2.1221.0:
+ version "2.1221.0"
+ resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1221.0.tgz#36dd12d7af4b46495a92d77a0fc3be2f8903f252"
+ integrity sha512-RKFnhC5RW70xRFixzdvZ50YnNT2DdNh1CoXWBEmPOVEXDEv5ztTmAsgju2vfPQZLkKuMzL8LCBdT3xrr8JdoDg==
dependencies:
buffer "4.9.2"
events "1.1.1"
@@ -3546,10 +3546,10 @@ jest-message-util@^27.5.1:
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-mock-extended@^2.0.7:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/jest-mock-extended/-/jest-mock-extended-2.0.7.tgz#73ad87d8a744949bc3415d840f03468229f73f2a"
- integrity sha512-h8brJJN5BZb03hTwplvt+raT6Nj0U2U71Z26Py12Qc3kvYnAjDW/zSuQJLnXCNyyufy592VC9k3X7AOz+2H52g==
+jest-mock-extended@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/jest-mock-extended/-/jest-mock-extended-3.0.1.tgz#5f109d5e1da62851ffc9126a01e83cd6470b810b"
+ integrity sha512-RF4Ow8pXvbRuEcCTj56oYHmig5311BSFvbEGxPNYL51wGKGu93MvVQgx0UpFmjqyBXIcElkZo2Rke88kR1iSKQ==
dependencies:
ts-essentials "^7.0.3"
@@ -4055,9 +4055,9 @@ moment-timezone@^0.5.37:
moment ">= 2.9.0"
"moment@>= 2.9.0":
- version "2.29.3"
- resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3"
- integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==
+ version "2.29.4"
+ resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108"
+ integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
ms@2.1.2:
version "2.1.2"
@@ -4821,10 +4821,10 @@ tslib@^2.3.0, tslib@^2.3.1:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
-tslog@^3.3.3:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/tslog/-/tslog-3.3.3.tgz#751a469e0d36841bd7e03676c27e53e7ffe9bc3d"
- integrity sha512-lGrkndwpAohZ9ntQpT+xtUw5k9YFV1DjsksiWQlBSf82TTqsSAWBARPRD9juI730r8o3Awpkjp2aXy9k+6vr+g==
+tslog@^3.3.4:
+ version "3.3.4"
+ resolved "https://registry.yarnpkg.com/tslog/-/tslog-3.3.4.tgz#083197a908c97b3b714a0576b9dac293f223f368"
+ integrity sha512-N0HHuHE0e/o75ALfkioFObknHR5dVchUad4F0XyFf3gXJYB++DewEzwGI/uIOM216E5a43ovnRNEeQIq9qgm4Q==
dependencies:
source-map-support "^0.5.21"
@@ -4871,10 +4871,10 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"
-typescript@^4.7.4:
- version "4.7.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
- integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
+typescript@^4.8.3:
+ version "4.8.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"
+ integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==
unbox-primitive@^1.0.2:
version "1.0.2"
diff --git a/modules/webhook/lambdas/webhook/package.json b/modules/webhook/lambdas/webhook/package.json
index 504d3839..09a563ec 100644
--- a/modules/webhook/lambdas/webhook/package.json
+++ b/modules/webhook/lambdas/webhook/package.json
@@ -25,7 +25,7 @@
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "0.34.0",
- "aws-sdk": "^2.1216.0",
+ "aws-sdk": "^2.1220.0",
"body-parser": "^1.20.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "4.2.1",
diff --git a/modules/webhook/lambdas/webhook/yarn.lock b/modules/webhook/lambdas/webhook/yarn.lock
index 22d616a0..4d9f9724 100644
--- a/modules/webhook/lambdas/webhook/yarn.lock
+++ b/modules/webhook/lambdas/webhook/yarn.lock
@@ -2004,10 +2004,10 @@ aws-lambda@^1.0.7:
js-yaml "^3.14.1"
watchpack "^2.0.0-beta.10"
-aws-sdk@^2.1216.0, aws-sdk@^2.814.0:
- version "2.1216.0"
- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1216.0.tgz#d2be6259f6374b214f9ea6a665b015d5ba54cdb5"
- integrity sha512-sCgkIc9ZdFyf4dImsbRx+139gw9A6Xy924wwP4rAVrYeSbudBY0jDO4wJBAwUpPKqX5cxjSLmjP7gOi2CDwhjw==
+aws-sdk@^2.1220.0, aws-sdk@^2.814.0:
+ version "2.1220.0"
+ resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1220.0.tgz#5cec163ee7799875e484afcdde93c4b1e713c64c"
+ integrity sha512-l8KEOo2Cb066lLPhVDucx6JuNUrMVmZW937htKagf8rcADCbM0ySIGGKWbi2E8l44ptX3/tDOFnyiSislolATQ==
dependencies:
buffer "4.9.2"
events "1.1.1"
diff --git a/variables.tf b/variables.tf
index 84645992..1924a46b 100644
--- a/variables.tf
+++ b/variables.tf
@@ -236,9 +236,14 @@ variable "logging_kms_key_id" {
}
variable "runner_allow_prerelease_binaries" {
- description = "Allow the runners to update to prerelease binaries."
+ description = "(Deprecated, no longer used), allow the runners to update to prerelease binaries."
type = bool
- default = false
+ default = null
+
+ validation {
+ condition = var.runner_allow_prerelease_binaries == null
+ error_message = "The \"runner_allow_prerelease_binaries\" variable is no longer used. GitHub runners are not released as pre-release, only releases should be used."
+ }
}
variable "block_device_mappings" {