Skip to content

Commit 54ec640

Browse files
authored
Merge branch 'nodejs:main' into node-27-introduction-plans
2 parents 0b31584 + 0b47677 commit 54ec640

21 files changed

Lines changed: 252 additions & 187 deletions

.github/ISSUE_TEMPLATE/1-bug-report.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Please fill in as much of the template below as you're able.
1111

1212
## Environment
1313

14-
* **Platform**:
15-
* **Docker Version**:
16-
* **Node.js Version**:
17-
* **Image Tag**:
14+
- **Platform**:
15+
- **Docker Version**:
16+
- **Node.js Version**:
17+
- **Image Tag**:
1818

1919
## Expected Behavior
2020

@@ -45,4 +45,3 @@ Tell us about the steps you took to encounter this bug with the image.
4545
<!--
4646
Tell us anything else you think we should know.
4747
-->
48-

.github/ISSUE_TEMPLATE/2-feature-request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ Please describe the desired behavior.
2626
<!--
2727
Please describe alternative solutions or features you have considered.
2828
-->
29-

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ If you're unsure about any of these, don't hesitate to ask. We're here to help!
5151
- [ ] I have updated the documentation accordingly.
5252
- [ ] I have read the **CONTRIBUTING.md** document.
5353
- [ ] All new and existing tests passed.
54-

.github/dependabot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
3-
- package-ecosystem: github-actions
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
3+
- package-ecosystem: github-actions
4+
directory: '/'
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10

.github/workflows/automatic-updates.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Automatically update Docker image versions
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: "*/15 * * * *"
6+
- cron: '*/15 * * * *'
77

88
jobs:
99
build:
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
16+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1717

1818
- name: Run automation script
1919
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
@@ -29,11 +29,11 @@ jobs:
2929
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
3030
with:
3131
token: ${{ secrets.GH_API_TOKEN }}
32-
author: "Node.js GitHub Bot <nodejs-github-bot@users.noreply.github.com>"
32+
author: 'Node.js GitHub Bot <nodejs-github-bot@users.noreply.github.com>'
3333
branch: update-branch
3434
base: main
35-
commit-message: "feat: Node.js ${{ steps.updt.outputs.result }}"
36-
title: "feat: Node.js ${{ steps.updt.outputs.result }}"
35+
commit-message: 'feat: Node.js ${{ steps.updt.outputs.result }}'
36+
title: 'feat: Node.js ${{ steps.updt.outputs.result }}'
3737
delete-branch: true
3838
team-reviewers: |
3939
nodejs/docker

.github/workflows/build-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: build-test
33
on:
44
push:
55
paths:
6-
- "**/Dockerfile"
7-
- "**/docker-entrypoint.sh"
6+
- '**/Dockerfile'
7+
- '**/docker-entrypoint.sh'
88
- genMatrix.js
9-
- ".github/workflows/build-test.yml"
9+
- '.github/workflows/build-test.yml'
1010

1111
pull_request:
1212
paths:
13-
- "**/Dockerfile"
14-
- "**/docker-entrypoint.sh"
13+
- '**/Dockerfile'
14+
- '**/docker-entrypoint.sh'
1515
- genMatrix.js
16-
- ".github/workflows/build-test.yml"
16+
- '.github/workflows/build-test.yml'
1717

1818
jobs:
1919
gen-matrix:
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
25+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2626

2727
- name: Calculate file differences
2828
id: diff
@@ -66,7 +66,7 @@ jobs:
6666
script: return "${{ matrix.version }}".split('.')[0]
6767

6868
- name: Checkout
69-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
69+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
7070

7171
- name: Build image
7272
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0

.github/workflows/doctoc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Check generated TOCs
33
on:
44
pull_request:
55
paths:
6-
- "README.md"
7-
- "docs/BestPractices.md"
8-
- ".github/workflows/doctoc.yml"
6+
- 'README.md'
7+
- 'docs/BestPractices.md'
8+
- '.github/workflows/doctoc.yml'
99

1010
permissions:
1111
contents: read
@@ -15,7 +15,7 @@ jobs:
1515
name: Doc TOC Check
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
18+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
2020
with:
2121
node-version: 'lts/*'

.github/workflows/markdown-link-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Check Markdown links
33
on:
44
pull_request:
55
paths:
6-
- "**/*.md"
7-
- "markdown_link_check_config.json"
8-
- ".github/workflows/markdown-link-check.yml"
6+
- '**/*.md'
7+
- 'markdown_link_check_config.json'
8+
- '.github/workflows/markdown-link-check.yml'
99

1010
permissions:
1111
contents: read
@@ -14,7 +14,7 @@ jobs:
1414
markdown-link-check:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
17+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1818
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
1919
with:
2020
node-version: 'lts/*'

.github/workflows/missing-checksum.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Check Alpine CHECKSUM
33
on:
44
pull_request:
55
paths:
6-
- ".github/workflows/missing-checksum.yml"
7-
- "**/alpine*/Dockerfile"
6+
- '.github/workflows/missing-checksum.yml'
7+
- '**/alpine*/Dockerfile'
88

99
permissions:
1010
contents: read
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
16+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1717

1818
- name: Count number of Alpine Dockersfiles without CHECKSUM
1919
run: |

.github/workflows/official-pr.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
- closed
77

88
paths:
9-
- ".github/workflows/official-pr.yml"
10-
- "**/Dockerfile"
11-
- "**/docker-entrypoint.sh"
12-
- "versions.json"
13-
- "stackbrew.js"
9+
- '.github/workflows/official-pr.yml'
10+
- '**/Dockerfile'
11+
- '**/docker-entrypoint.sh'
12+
- 'versions.json'
13+
- 'stackbrew.js'
1414

1515
jobs:
1616
pr:
@@ -21,14 +21,14 @@ jobs:
2121

2222
steps:
2323
- name: Checkout the docker-node repo
24-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
24+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2525
with:
2626
path: docker-node
2727
ref: ${{ github.base_ref }}
2828
fetch-depth: 50
2929

3030
- name: Checkout the official-images repo
31-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
31+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3232
with:
3333
path: official-images
3434
repository: docker-library/official-images
@@ -46,8 +46,8 @@ jobs:
4646
push-to-fork: nodejs/official-images
4747
path: official-images
4848
branch: node
49-
commit-message: "Node: ${{ github.event.pull_request.title }}"
50-
title: "Node: ${{ github.event.pull_request.title }}"
49+
commit-message: 'Node: ${{ github.event.pull_request.title }}'
50+
title: 'Node: ${{ github.event.pull_request.title }}'
5151
body: |
5252
Pull Request: ${{ github.event.pull_request.html_url }}
5353
@PeterDaveHello @SimenB @nschonni @rafaelgss @mcollina

0 commit comments

Comments
 (0)