← 返回首页
chore: merge main into release · ietf-tools/datatracker@d3890c7 · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit d3890c7

Browse files
chore: merge main into release
2 parents 5775077 + 68104b5 commit d3890c7

70 files changed

Lines changed: 3206 additions & 1056 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎.devcontainer/devcontainer.json‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"mutantdino.resourcemonitor",
3333
"oderwat.indent-rainbow",
3434
"redhat.vscode-yaml",
35-
"spmeesseman.vscode-taskexplorer",
3635
"ms-python.pylint",
3736
"charliermarsh.ruff"
3837
],

‎.devcontainer/docker-compose.extend.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ services:
1414
network_mode: service:db
1515
blobstore:
1616
ports:
17-
- '9000'
18-
- '9001'
17+
- '9000:9000'
18+
- '9001:9001'
1919

2020
volumes:
2121
datatracker-vscode-ext:

‎.github/workflows/build-base-app.yml‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
packages: write
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
with:
2323
token: ${{ secrets.GH_COMMON_TOKEN }}
2424

@@ -28,20 +28,20 @@ jobs:
2828
echo "IMGVERSION=$CURDATE" >> $GITHUB_ENV
2929
3030
- name: Set up QEMU
31-
uses: docker/setup-qemu-action@v3
31+
uses: docker/setup-qemu-action@v4
3232

3333
- name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@v3
34+
uses: docker/setup-buildx-action@v4
3535

3636
- name: Login to GitHub Container Registry
37-
uses: docker/login-action@v3
37+
uses: docker/login-action@v4
3838
with:
3939
registry: ghcr.io
4040
username: ${{ github.actor }}
4141
password: ${{ secrets.GITHUB_TOKEN }}
4242

4343
- name: Docker Build & Push
44-
uses: docker/build-push-action@v6
44+
uses: docker/build-push-action@v7
4545
env:
4646
DOCKER_BUILD_SUMMARY: false
4747
with:
@@ -60,7 +60,7 @@ jobs:
6060
echo "${{ env.IMGVERSION }}" > dev/build/TARGET_BASE
6161
6262
- name: Commit CHANGELOG.md
63-
uses: stefanzweifel/git-auto-commit-action@v6
63+
uses: stefanzweifel/git-auto-commit-action@v7
6464
with:
6565
branch: ${{ github.ref_name }}
6666
commit_message: 'ci: update base image target version to ${{ env.IMGVERSION }}'

‎.github/workflows/build-devblobstore.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020
packages: write
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v3
26+
uses: docker/setup-buildx-action@v4
2727

2828
- name: Login to GitHub Container Registry
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@v4
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}
3333
password: ${{ secrets.GITHUB_TOKEN }}
3434

3535
- name: Docker Build & Push
36-
uses: docker/build-push-action@v6
36+
uses: docker/build-push-action@v7
3737
env:
3838
DOCKER_BUILD_SUMMARY: false
3939
with:

‎.github/workflows/build-mq-broker.yml‎

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,40 @@ jobs:
2424
packages: write
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
- name: Set up QEMU
30-
uses: docker/setup-qemu-action@v3
30+
uses: docker/setup-qemu-action@v4
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v3
33+
uses: docker/setup-buildx-action@v4
3434

3535
- name: Login to GitHub Container Registry
36-
uses: docker/login-action@v3
36+
uses: docker/login-action@v4
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

42+
- name: Set rabbitmq version
43+
id: rabbitmq-version
44+
run: |
45+
if [[ "${{ inputs.rabbitmq_version }}" == "" ]]; then
46+
echo "RABBITMQ_VERSION=3.13-alpine" >> $GITHUB_OUTPUT
47+
else
48+
echo "RABBITMQ_VERSION=${{ inputs.rabbitmq_version }}" >> $GITHUB_OUTPUT
49+
fi
50+
4251
- name: Docker Build & Push
43-
uses: docker/build-push-action@v6
52+
uses: docker/build-push-action@v7
4453
env:
4554
DOCKER_BUILD_SUMMARY: false
4655
with:
4756
context: .
4857
file: dev/mq/Dockerfile
4958
platforms: linux/amd64,linux/arm64
5059
push: true
51-
build-args: RABBITMQ_VERSION=${{ inputs.rabbitmq_version }}
60+
build-args: RABBITMQ_VERSION=${{ steps.rabbitmq-version.outputs.RABBITMQ_VERSION }}
5261
tags: |
53-
ghcr.io/ietf-tools/datatracker-mq:${{ inputs.rabbitmq_version }}
62+
ghcr.io/ietf-tools/datatracker-mq:${{ steps.rabbitmq-version.outputs.RABBITMQ_VERSION }}
5463
ghcr.io/ietf-tools/datatracker-mq:latest

‎.github/workflows/build.yml‎

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }}
6767

6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v6
7070
with:
7171
fetch-depth: 1
7272
fetch-tags: false
@@ -98,7 +98,7 @@ jobs:
9898
echo "IS_RELEASE=true" >> $GITHUB_ENV
9999
100100
- name: Create Draft Release
101-
uses: ncipollo/release-action@v1.18.0
101+
uses: ncipollo/release-action@v1.21.0
102102
if: ${{ github.ref_name == 'release' }}
103103
with:
104104
prerelease: true
@@ -164,7 +164,7 @@ jobs:
164164
TARGET_BASE: ${{needs.prepare.outputs.base_image_version}}
165165

166166
steps:
167-
- uses: actions/checkout@v4
167+
- uses: actions/checkout@v6
168168
with:
169169
fetch-depth: 1
170170
fetch-tags: false
@@ -175,7 +175,7 @@ jobs:
175175
node-version: 18.x
176176

177177
- name: Setup Python
178-
uses: actions/setup-python@v5
178+
uses: actions/setup-python@v6
179179
with:
180180
python-version: "3.x"
181181

@@ -186,7 +186,7 @@ jobs:
186186

187187
- name: Download a Coverage Results
188188
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
189-
uses: actions/download-artifact@v4.3.0
189+
uses: actions/download-artifact@v8.0.1
190190
with:
191191
name: coverage
192192

@@ -253,10 +253,10 @@ jobs:
253253
EOL
254254
255255
- name: Setup Docker Buildx
256-
uses: docker/setup-buildx-action@v3
256+
uses: docker/setup-buildx-action@v4
257257

258258
- name: Login to GitHub Container Registry
259-
uses: docker/login-action@v3
259+
uses: docker/login-action@v4
260260
with:
261261
registry: ghcr.io
262262
username: ${{ github.actor }}
@@ -267,7 +267,7 @@ jobs:
267267
run: echo "FEATURE_LATEST_TAG=$(echo $GITHUB_REF_NAME | tr / -)" >> $GITHUB_ENV
268268

269269
- name: Build Images
270-
uses: docker/build-push-action@v6
270+
uses: docker/build-push-action@v7
271271
env:
272272
DOCKER_BUILD_SUMMARY: false
273273
with:
@@ -291,7 +291,7 @@ jobs:
291291

292292
- name: Download Coverage Results
293293
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
294-
uses: actions/download-artifact@v4.3.0
294+
uses: actions/download-artifact@v8.0.1
295295
with:
296296
name: coverage
297297

@@ -315,7 +315,7 @@ jobs:
315315
histCoveragePath: historical-coverage.json
316316

317317
- name: Create Release
318-
uses: ncipollo/release-action@v1.18.0
318+
uses: ncipollo/release-action@v1.21.0
319319
if: ${{ env.SHOULD_DEPLOY == 'true' }}
320320
with:
321321
allowUpdates: true
@@ -328,7 +328,7 @@ jobs:
328328
token: ${{ secrets.GITHUB_TOKEN }}
329329

330330
- name: Update Baseline Coverage
331-
uses: ncipollo/release-action@v1.18.0
331+
uses: ncipollo/release-action@v1.21.0
332332
if: ${{ github.event.inputs.updateCoverage == 'true' || github.ref_name == 'release' }}
333333
with:
334334
allowUpdates: true
@@ -341,7 +341,7 @@ jobs:
341341
token: ${{ secrets.GITHUB_TOKEN }}
342342

343343
- name: Upload Build Artifacts
344-
uses: actions/upload-artifact@v4
344+
uses: actions/upload-artifact@v7
345345
with:
346346
name: release-${{ env.PKG_VERSION }}
347347
path: /home/runner/work/release/release.tar.gz
@@ -360,7 +360,7 @@ jobs:
360360
steps:
361361
- name: Notify on Slack (Success)
362362
if: ${{ !contains(join(needs.*.result, ','), 'failure') }}
363-
uses: slackapi/slack-github-action@v2
363+
uses: slackapi/slack-github-action@v3
364364
with:
365365
token: ${{ secrets.SLACK_GH_BOT }}
366366
method: chat.postMessage
@@ -375,7 +375,7 @@ jobs:
375375
value: "Completed"
376376
- name: Notify on Slack (Failure)
377377
if: ${{ contains(join(needs.*.result, ','), 'failure') }}
378-
uses: slackapi/slack-github-action@v2
378+
uses: slackapi/slack-github-action@v3
379379
with:
380380
token: ${{ secrets.SLACK_GH_BOT }}
381381
method: chat.postMessage
@@ -403,7 +403,7 @@ jobs:
403403
PKG_VERSION: ${{needs.prepare.outputs.pkg_version}}
404404

405405
steps:
406-
- uses: actions/checkout@v4
406+
- uses: actions/checkout@v6
407407
with:
408408
ref: main
409409

‎.github/workflows/ci-run-tests.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }}
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 1
2929
fetch-tags: false

‎.github/workflows/codeql-analysis.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@v4
3333
with:
3434
languages: ${{ matrix.language }}
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@v3
37+
uses: github/codeql-action/analyze@v4

‎.github/workflows/dependency-review.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
- name: 'Dependency Review'
2020
uses: actions/dependency-review-action@v4
2121
with:

‎.github/workflows/dev-assets-sync-nightly.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ jobs:
2929
contents: read
3030
packages: write
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333

3434
- name: Login to GitHub Container Registry
35-
uses: docker/login-action@v3
35+
uses: docker/login-action@v4
3636
with:
3737
registry: ghcr.io
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Docker Build & Push
42-
uses: docker/build-push-action@v6
42+
uses: docker/build-push-action@v7
4343
env:
4444
DOCKER_BUILD_SUMMARY: false
4545
with:

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.