Skip to content

Commit c148e4a

Browse files
authored
Merge branch 'arduino:main' into main
2 parents 90ea013 + dc7f7c8 commit c148e4a

File tree

11 files changed

+694
-115
lines changed

11 files changed

+694
-115
lines changed

.github/workflows/assets/accesslist.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99

1010
# Denylist
1111
- host: github.com
12-
name: 7Semi
12+
# They later changed their username to galihru, for which an additional entry was added.
13+
name: 4211421036
1314
access: deny
14-
reference: https://github.com/arduino/library-registry/pull/5734#pullrequestreview-2548818476
15+
reference: https://github.com/arduino/library-registry/pull/6269#pullrequestreview-2813557457
1516
- host: github.com
1617
name: ajangrahmat
1718
access: deny
@@ -28,6 +29,10 @@
2829
name: ErlTechnologies
2930
access: deny
3031
reference: https://github.com/arduino/library-registry/pull/4873#issuecomment-2589138298
32+
- host: github.com
33+
name: galihru
34+
access: deny
35+
reference: https://github.com/arduino/library-registry/pull/6514#pullrequestreview-2969201873
3136
- host: github.com
3237
name: kelasrobot
3338
access: deny
@@ -44,3 +49,7 @@
4449
name: YoavPaz
4550
access: deny
4651
reference: https://github.com/arduino/library-registry/pull/5741#issuecomment-2589016403
52+
- host: github.com
53+
name: tremaru
54+
access: deny
55+
reference: https://github.com/arduino/library-registry/pull/6697

.github/workflows/check-license.yml

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

3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Install Ruby
4040
uses: ruby/setup-ruby@v1

.github/workflows/check-markdown.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Initialize markdownlint-cli problem matcher
4040
uses: xt0rted/markdownlint-problem-matcher@v3
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout repository
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454

5555
- name: Determine whether only modified files should be checked
5656
id: check-modified

.github/workflows/check-prettier-formatting.yml

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

213213
steps:
214214
- name: Checkout repository
215-
uses: actions/checkout@v4
215+
uses: actions/checkout@v5
216216

217217
- name: Install Prettier
218218
run: sudo npm install --global prettier

.github/workflows/check-toc.yml

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

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Install markdown-toc
3939
run: sudo npm install --global markdown-toc

.github/workflows/check-workflows.yml

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

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Download JSON schema for GitHub Actions workflows
2828
id: download-schema

.github/workflows/check-yaml.yml

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

6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171

7272
- name: Check YAML
7373
continue-on-error: ${{ matrix.configuration.continue-on-error }}

.github/workflows/manage-prs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
# Checkout the tip of the default branch (this is the action's default ref input value when workflow is triggered
138138
# by an issue_comment or pull_request_target event).
139139
- name: Checkout local repository
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141

142142
- name: Download submission parser
143143
id: download-parser
@@ -147,7 +147,7 @@ jobs:
147147
location: ${{ runner.temp }}
148148

149149
- name: Download diff
150-
uses: actions/download-artifact@v4
150+
uses: actions/download-artifact@v5
151151
with:
152152
path: ${{ needs.diff.outputs.path }}
153153
name: ${{ needs.diff.outputs.artifact }}
@@ -475,7 +475,7 @@ jobs:
475475

476476
steps:
477477
- name: Download submission check failure flag artifacts
478-
uses: actions/download-artifact@v4
478+
uses: actions/download-artifact@v5
479479
with:
480480
path: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PATH }}
481481
pattern: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PREFIX }}*
@@ -594,7 +594,7 @@ jobs:
594594

595595
- name: Checkout index source branch
596596
if: steps.merge.outcome == 'success'
597-
uses: actions/checkout@v4
597+
uses: actions/checkout@v5
598598
with:
599599
ref: production
600600

.github/workflows/spell-check.yml

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

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Spell check
2525
uses: codespell-project/actions-codespell@master

.github/workflows/sync-labels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
@@ -105,10 +105,10 @@ jobs:
105105
echo "::set-output name=flag::--dry-run"
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v4
108+
uses: actions/checkout@v5
109109

110110
- name: Download configuration file artifacts
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v5
112112
with:
113113
merge-multiple: true
114114
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*

0 commit comments

Comments
 (0)