豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit cba91e1

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents a41580c + 4a587ad commit cba91e1

File tree

24 files changed

+1288
-890
lines changed

24 files changed

+1288
-890
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Get latest runner version
101101
id: latest_runner
102-
uses: actions/github-script@v8
102+
uses: actions/github-script@v9
103103
with:
104104
github-token: ${{secrets.GITHUB_TOKEN}}
105105
script: |

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Compute image version
2828
id: image
29-
uses: actions/github-script@v8
29+
uses: actions/github-script@v9
3030
with:
3131
script: |
3232
const fs = require('fs');

.github/workflows/release-fork.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Runner CD
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: "0 0 * * 0" # Every Sunday at midnight UTC
6+
- cron: '0 0 * * 0' # Every Sunday at midnight UTC
77

88
jobs:
99
merge-upstream:
@@ -40,7 +40,7 @@ jobs:
4040
# Query GitHub release ensure version is not used
4141
- name: Check version
4242
id: check_version
43-
uses: actions/github-script@v7.0.1
43+
uses: actions/github-script@v9
4444
with:
4545
github-token: ${{secrets.GH_TOKEN}}
4646
script: |
@@ -228,8 +228,8 @@ jobs:
228228
env:
229229
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
230230
with:
231-
tag_name: "v${{ needs.check.outputs.version }}"
232-
release_name: "v${{ needs.check.outputs.version }}"
231+
tag_name: 'v${{ needs.check.outputs.version }}'
232+
release_name: 'v${{ needs.check.outputs.version }}'
233233
body: See [Release Notes](https://github.com/actions/runner/releases/tag/v${{ needs.check.outputs.version }})
234234

235235
# Upload release assets (full runner packages)

images/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ARG TARGETOS
55
ARG TARGETARCH
66
ARG RUNNER_VERSION
77
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.7.0
8-
ARG DOCKER_VERSION=29.3.0
9-
ARG BUILDX_VERSION=0.32.1
8+
ARG DOCKER_VERSION=29.3.1
9+
ARG BUILDX_VERSION=0.33.0
1010

1111
RUN apt update -y && apt install curl unzip -y
1212

0 commit comments

Comments
 (0)