Skip to content

Commit f2c05de

Browse files
Prep 2.316.1 Release (actions#3272)
1 parent 18803bd commit f2c05de

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

releaseNote.md

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
11
## What's Changed
2-
* Load '_runnerSettings' in the early point of JobRunner.cs by @TingluoHuang in https://github.com/actions/runner/pull/3218
3-
* Add new SessionConflict return code by @eeSquared in https://github.com/actions/runner/pull/3215
4-
* backoff if we retried polling for more than 50 times in less than 30minutes by @aiqiaoy in https://github.com/actions/runner/pull/3232
5-
* Update dotnet sdk to latest version @6.0.421 by @github-actions in https://github.com/actions/runner/pull/3244
6-
* Cleanup enabled feature flags. by @TingluoHuang in https://github.com/actions/runner/pull/3246
7-
* Relax the condition to stop uploading to Results by @yacaovsnc in https://github.com/actions/runner/pull/3230
8-
* Cleanup enabled feature flags. by @TingluoHuang in https://github.com/actions/runner/pull/3248
9-
* Replace invalid file name chars in diag log name by @ericsciple in https://github.com/actions/runner/pull/3249
102

11-
## New Contributors
12-
* @eeSquared made their first contribution in https://github.com/actions/runner/pull/3215
13-
* @aiqiaoy made their first contribution in https://github.com/actions/runner/pull/3232
3+
- Preserve dates when deserializing job message from Run Service by @ericsciple in https://github.com/actions/runner/pull/3269
144

15-
**Full Changelog**: https://github.com/actions/runner/compare/v2.315.0...v2.316.0
5+
**Full Changelog**: https://github.com/actions/runner/compare/v2.316.0...v2.316.1
166

177
_Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
188
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
199
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners_
2010

2111
## Windows x64
12+
2213
We 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.
2314

2415
The following snipped needs to be run on `powershell`:
25-
``` powershell
16+
17+
```powershell
2618
# Create a folder under the drive root
2719
mkdir \actions-runner ; cd \actions-runner
2820
# Download the latest runner package
@@ -33,12 +25,14 @@ Add-Type -AssemblyName System.IO.Compression.FileSystem ;
3325
```
3426

3527
## [Pre-release] Windows arm64
28+
3629
**Warning:** Windows arm64 runners are currently in preview status and use [unofficial versions of nodejs](https://unofficial-builds.nodejs.org/). They are not intended for production workflows.
3730

3831
We 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.
3932

4033
The following snipped needs to be run on `powershell`:
41-
``` powershell
34+
35+
```powershell
4236
# Create a folder under the drive root
4337
mkdir \actions-runner ; cd \actions-runner
4438
# Download the latest runner package
@@ -50,7 +44,7 @@ Add-Type -AssemblyName System.IO.Compression.FileSystem ;
5044

5145
## OSX x64
5246

53-
``` bash
47+
```bash
5448
# Create a folder
5549
mkdir actions-runner && cd actions-runner
5650
# Download the latest runner package
@@ -61,7 +55,7 @@ tar xzf ./actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
6155

6256
## OSX arm64 (Apple silicon)
6357

64-
``` bash
58+
```bash
6559
# Create a folder
6660
mkdir actions-runner && cd actions-runner
6761
# Download the latest runner package
@@ -72,7 +66,7 @@ tar xzf ./actions-runner-osx-arm64-<RUNNER_VERSION>.tar.gz
7266

7367
## Linux x64
7468

75-
``` bash
69+
```bash
7670
# Create a folder
7771
mkdir actions-runner && cd actions-runner
7872
# Download the latest runner package
@@ -83,7 +77,7 @@ tar xzf ./actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
8377

8478
## Linux arm64
8579

86-
``` bash
80+
```bash
8781
# Create a folder
8882
mkdir actions-runner && cd actions-runner
8983
# Download the latest runner package
@@ -94,7 +88,7 @@ tar xzf ./actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz
9488

9589
## Linux arm
9690

97-
``` bash
91+
```bash
9892
# Create a folder
9993
mkdir actions-runner && cd actions-runner
10094
# Download the latest runner package
@@ -104,6 +98,7 @@ tar xzf ./actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz
10498
```
10599

106100
## Using your self hosted runner
101+
107102
For 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)
108103

109104
## SHA-256 Checksums

src/runnerversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.316.0
1+
2.316.1

0 commit comments

Comments
 (0)