mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
Compare commits
3 Commits
Duplicated
...
v2.305.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6cbe663c23 | ||
|
|
20721bc950 | ||
|
|
fde86b0666 |
@@ -1,4 +1,5 @@
|
|||||||
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0 as build
|
# Source: https://github.com/dotnet/dotnet-docker
|
||||||
|
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0-jammy as build
|
||||||
|
|
||||||
ARG RUNNER_VERSION
|
ARG RUNNER_VERSION
|
||||||
ARG RUNNER_ARCH="x64"
|
ARG RUNNER_ARCH="x64"
|
||||||
@@ -22,7 +23,7 @@ RUN export DOCKER_ARCH=x86_64 \
|
|||||||
&& tar zxvf docker.tgz \
|
&& tar zxvf docker.tgz \
|
||||||
&& rm -rf docker.tgz
|
&& rm -rf docker.tgz
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0
|
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0-jammy
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
ENV RUNNER_MANUALLY_TRAP_SIG=1
|
ENV RUNNER_MANUALLY_TRAP_SIG=1
|
||||||
@@ -31,6 +32,7 @@ ENV ACTIONS_RUNNER_PRINT_LOG_TO_STDOUT=1
|
|||||||
RUN apt-get update -y \
|
RUN apt-get update -y \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
sudo \
|
sudo \
|
||||||
|
lsb-release \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN adduser --disabled-password --gecos "" --uid 1001 runner \
|
RUN adduser --disabled-password --gecos "" --uid 1001 runner \
|
||||||
|
|||||||
@@ -1,18 +1,25 @@
|
|||||||
## Features
|
## Features
|
||||||
- Runner changes for communication with Results service (#2510, #2531, #2535, #2516)
|
- Resolve Actions Directly From Launch for Run Service Jobs (#2529)
|
||||||
- Add `*.ghe.localhost` domains to hosted server check (#2536)
|
- Send annotations to run-service (#2574)
|
||||||
- Add `OrchestrationId` to user-agent for better telemetry correlation. (#2568)
|
- Add `--no-default-labels` config option to self-hosted runners (#2443)
|
||||||
|
- Update container-hooks to 0.3.2 in runner docker image (#2618)
|
||||||
|
- Set runner environment in context and env (#2518)
|
||||||
|
- Switch runner image from Debian to Ubuntu 22.04 (#2651)
|
||||||
|
|
||||||
## Bugs
|
## Bugs
|
||||||
- Fix JIT configurations on Windows (#2497)
|
- Handle conflict errors from run service (#2570)
|
||||||
- Guard against NullReference while creating HostContext (#2343)
|
- Fix null guard bug (#2576)
|
||||||
- Handles broken symlink in `Which` (#2150, #2196)
|
- Trace WebSocket exception into verbose level to reduce noise in diag log (#2591)
|
||||||
- Adding curl retry for external tool downloads (#2552, #2557)
|
- Ensure multiple composite annotations are correctly written (#2311)
|
||||||
- Limit the time we wait for waiting websocket to connect. (#2554)
|
- Adding Consistency to 'Failed To Resolve Action Download Info' Infrastructure Error Flagging (#2488)
|
||||||
|
- Filter out empty arguments in container hooks (#2633)
|
||||||
|
- Fix uses: docker://image:tag steps when container hook is used (#2626)
|
||||||
|
|
||||||
## Misc
|
## Misc
|
||||||
- Bump container hooks version to 0.3.1 in runner image (#2496)
|
- Contribute.md: Fix link to style guidelines (#2560)
|
||||||
- Runner changes to communicate with vNext services (#2487, #2500, #2505, #2541, #2547)
|
- Remove Temporary Serialization Shim (#2549)
|
||||||
|
- Move Using V2 Flow log to Trace (#2635)
|
||||||
|
- Add utf8 with bom (#2641)
|
||||||
|
|
||||||
_Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
|
_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.
|
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<Update to ./src/runnerversion when creating release>
|
2.305.0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.304.0
|
2.305.0
|
||||||
|
|||||||
Reference in New Issue
Block a user