From 8df87a82b01bd4ea5768ccd2442ad666d7b4b77d Mon Sep 17 00:00:00 2001 From: Francesco Renzi Date: Mon, 8 Jul 2024 12:41:06 +0100 Subject: [PATCH 1/6] Rephrase node20 warning (#3376) --- src/Runner.Common/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Common/Constants.cs b/src/Runner.Common/Constants.cs index 9378104c435..d68d5cdf695 100644 --- a/src/Runner.Common/Constants.cs +++ b/src/Runner.Common/Constants.cs @@ -181,7 +181,7 @@ public static class Features public static readonly string DeprecatedNodeVersion = "node16"; public static readonly string EnforcedNode12DetectedAfterEndOfLife = "The following actions uses node12 which is deprecated and will be forced to run on node16: {0}. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/"; public static readonly string EnforcedNode12DetectedAfterEndOfLifeEnvVariable = "Node16ForceActionsWarnings"; - public static readonly string EnforcedNode16DetectedAfterEndOfLife = "The following actions uses Node.js version which is deprecated and will be forced to run on node20: {0}. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/"; + public static readonly string EnforcedNode16DetectedAfterEndOfLife = "The following actions use a deprecated Node.js version and will be forced to run on node20: {0}. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/"; public static readonly string EnforcedNode16DetectedAfterEndOfLifeEnvVariable = "Node20ForceActionsWarnings"; } From dbcaa7cf3d893cb8a801b381f86718d4efb3e053 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 01:06:31 -0400 Subject: [PATCH 2/6] Upgrade dotnet sdk to v8.0.303 (#3388) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .devcontainer/devcontainer.json | 2 +- src/dev.sh | 2 +- src/global.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 75c7e3e7e64..b4745fe10da 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,7 @@ "features": { "ghcr.io/devcontainers/features/docker-in-docker:1": {}, "ghcr.io/devcontainers/features/dotnet": { - "version": "8.0.302" + "version": "8.0.303" }, "ghcr.io/devcontainers/features/node:1": { "version": "16" diff --git a/src/dev.sh b/src/dev.sh index 8ad3ae3505a..8120ef33267 100755 --- a/src/dev.sh +++ b/src/dev.sh @@ -17,7 +17,7 @@ LAYOUT_DIR="$SCRIPT_DIR/../_layout" DOWNLOAD_DIR="$SCRIPT_DIR/../_downloads/netcore2x" PACKAGE_DIR="$SCRIPT_DIR/../_package" DOTNETSDK_ROOT="$SCRIPT_DIR/../_dotnetsdk" -DOTNETSDK_VERSION="8.0.302" +DOTNETSDK_VERSION="8.0.303" DOTNETSDK_INSTALLDIR="$DOTNETSDK_ROOT/$DOTNETSDK_VERSION" RUNNER_VERSION=$(cat runnerversion) diff --git a/src/global.json b/src/global.json index c9c2078a746..fd07d882ad3 100644 --- a/src/global.json +++ b/src/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "8.0.302" + "version": "8.0.303" } } From 2a7f327d93fb79326c974f4858ce62c3b81c580a Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Wed, 17 Jul 2024 08:35:03 -0600 Subject: [PATCH 3/6] Update supported distros to match new docs (#3226) Co-authored-by: Patrick Ellis <319655+pje@users.noreply.github.com> --- docs/start/envlinux.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/start/envlinux.md b/docs/start/envlinux.md index 11eff187693..c3a871f92bf 100644 --- a/docs/start/envlinux.md +++ b/docs/start/envlinux.md @@ -5,15 +5,15 @@ ## Supported Distributions and Versions x64 - - Red Hat Enterprise Linux 7+ - - CentOS 7+ - - Oracle Linux 7+ + - Red Hat Enterprise Linux 8+ + - CentOS 8+ + - Oracle Linux 8+ - Fedora 29+ - - Debian 9+ - - Ubuntu 16.04+ - - Linux Mint 18+ - - openSUSE 15+ - - SUSE Enterprise Linux (SLES) 12 SP2+ + - Debian 10+ + - Ubuntu 20.04+ + - Linux Mint 20+ + - openSUSE 15.2+ + - SUSE Enterprise Linux (SLES) 15 SP2+ ## Install .Net Core 3.x Linux Dependencies From 41bc0da6fe09466d23fd37d691feeb68dd3b4338 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 22 Jul 2024 15:07:09 -0600 Subject: [PATCH 4/6] Redirect supported OS doc section to the public docs (#3396) * redirect supported OS doc to public docs * Anchor to appropriate OS heading Co-authored-by: Patrick Ellis <319655+pje@users.noreply.github.com> --------- Co-authored-by: Patrick Ellis <319655+pje@users.noreply.github.com> --- docs/start/envlinux.md | 11 +---------- docs/start/envosx.md | 3 +-- docs/start/envwin.md | 7 +------ 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/docs/start/envlinux.md b/docs/start/envlinux.md index c3a871f92bf..f313debe37d 100644 --- a/docs/start/envlinux.md +++ b/docs/start/envlinux.md @@ -4,16 +4,7 @@ ## Supported Distributions and Versions -x64 - - Red Hat Enterprise Linux 8+ - - CentOS 8+ - - Oracle Linux 8+ - - Fedora 29+ - - Debian 10+ - - Ubuntu 20.04+ - - Linux Mint 20+ - - openSUSE 15.2+ - - SUSE Enterprise Linux (SLES) 15 SP2+ +Please see "[Supported architectures and operating systems for self-hosted runners](https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#linux)." ## Install .Net Core 3.x Linux Dependencies diff --git a/docs/start/envosx.md b/docs/start/envosx.md index 7a2e95fc85b..5bc0c87c958 100644 --- a/docs/start/envosx.md +++ b/docs/start/envosx.md @@ -4,7 +4,6 @@ ## Supported Versions - - macOS High Sierra (10.13) and later versions - - x64 and arm64 (Apple Silicon) +Please see "[Supported architectures and operating systems for self-hosted runners](https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#macos)." ## [More .Net Core Prerequisites Information](https://docs.microsoft.com/en-us/dotnet/core/macos-prerequisites?tabs=netcore30) diff --git a/docs/start/envwin.md b/docs/start/envwin.md index 76d392b8683..531c00cf849 100644 --- a/docs/start/envwin.md +++ b/docs/start/envwin.md @@ -2,11 +2,6 @@ ## Supported Versions - - Windows 7 64-bit - - Windows 8.1 64-bit - - Windows 10 64-bit - - Windows Server 2012 R2 64-bit - - Windows Server 2016 64-bit - - Windows Server 2019 64-bit +Please see "[Supported architectures and operating systems for self-hosted runners](https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#windows)." ## [More .NET Core Prerequisites Information](https://docs.microsoft.com/en-us/dotnet/core/windows-prerequisites?tabs=netcore30) From 2190396357dff9076091cb1f7d5781c207f41f33 Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Fri, 26 Jul 2024 10:36:05 -0400 Subject: [PATCH 5/6] Update Docker to v27.1.1 (#3401) * Update Docker to v27.1.1 * Update Dockerfile --- images/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index 39f1ab05674..dd8437e1d27 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -5,8 +5,8 @@ ARG TARGETOS ARG TARGETARCH ARG RUNNER_VERSION ARG RUNNER_CONTAINER_HOOKS_VERSION=0.6.1 -ARG DOCKER_VERSION=25.0.5 -ARG BUILDX_VERSION=0.13.2 +ARG DOCKER_VERSION=27.1.1 +ARG BUILDX_VERSION=0.16.2 RUN apt update -y && apt install curl unzip -y From 12506842c0f11159f0c0399774897b5b61a48433 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Fri, 26 Jul 2024 10:03:59 -0500 Subject: [PATCH 6/6] Prepare release 2.318.0 (#3404) --- releaseNote.md | 20 +++++++++++++------- src/runnerversion | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/releaseNote.md b/releaseNote.md index 5033486a5e8..5a2f71142f6 100644 --- a/releaseNote.md +++ b/releaseNote.md @@ -1,12 +1,18 @@ ## What's Changed -- Do not give up when uploading steps metadata by @yacaovsnc in https://github.com/actions/runner/pull/3280 -- Upgrade node20 to 20.13.1 by @pje in https://github.com/actions/runner/pull/3284 -- Delete all the contentHash files by @pje in https://github.com/actions/runner/pull/3285 -- Make it easy to install `git` on an Action Runner Image by @jww3 in https://github.com/actions/runner/pull/3273 -- Install `gpg-agent` during actions/runner container image build by @jww3 in https://github.com/actions/runner/pull/3294 - -**Full Changelog**: https://github.com/actions/runner/compare/v2.316.1...v2.317.0 +- Update Docker to v27.1.1 by @TingluoHuang in https://github.com/actions/runner/pull/3401 +- Upgrade dotnet sdk to v8.0.303 in https://github.com/actions/runner/pull/3388 +- Rephrase node20 warning by @rentziass in https://github.com/actions/runner/pull/3376 +- Bump hook version to 0.6.1 by @nikola-jokic in https://github.com/actions/runner/pull/3350 +- Backoff to avoid excessive retries to Run Service in a duration by @ericsciple in https://github.com/actions/runner/pull/3354 +- Bump System.Security.Cryptography.Pkcs from 5.0.0 to 8.0.0 in /src in https://github.com/actions/runner/pull/3347 +- Upgrade dotnet sdk to v8.0.302 in https://github.com/actions/runner/pull/3346 +- Bump runner to dotnet 8 by @TingluoHuang in https://github.com/actions/runner/pull/3345 +- Pass runner version as environment variable in workflow by @joshmgross in https://github.com/actions/runner/pull/3318 +- Make sure we mask secrets when reporting telemetry by @TingluoHuang in https://github.com/actions/runner/pull/3315 +- Bump docker version and docker buildx version by @int128 in https://github.com/actions/runner/pull/3277 + +**Full Changelog**: https://github.com/actions/runner/compare/v2.317.0...v2.318.0 _Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. diff --git a/src/runnerversion b/src/runnerversion index f7103c080f6..4d0a47ffd8e 100644 --- a/src/runnerversion +++ b/src/runnerversion @@ -1 +1 @@ -2.317.0 +2.318.0