Skip to content

Commit 4632369

Browse files
authored
Merge pull request #2 from arduino/main
Get changes from main
2 parents 8430373 + 155f0ae commit 4632369

14 files changed

+30
-32
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ jobs:
317317
if not exist "${{ matrix.config.working-directory }}" mklink /d "${{ matrix.config.working-directory }}" "C:\actions-runner\_work\arduino-ide\arduino-ide"
318318
319319
- name: Checkout
320-
uses: actions/checkout@v4
320+
uses: actions/checkout@v5
321321

322322

323323
- name: Install Node.js
@@ -441,10 +441,10 @@ jobs:
441441
echo "CHANNEL_FILES_PATH=${{ runner.temp }}/channel-files" >> "$GITHUB_ENV"
442442
443443
- name: Checkout
444-
uses: actions/checkout@v4
444+
uses: actions/checkout@v5
445445

446446
- name: Download staged-for-merge channel file artifacts
447-
uses: actions/download-artifact@v4
447+
uses: actions/download-artifact@v5
448448
with:
449449
merge-multiple: true
450450
path: ${{ env.CHANNEL_FILES_PATH }}
@@ -513,7 +513,7 @@ jobs:
513513

514514
steps:
515515
- name: Download job transfer artifact that contains ${{ matrix.artifact.name }} tester build
516-
uses: actions/download-artifact@v4
516+
uses: actions/download-artifact@v5
517517
with:
518518
name: ${{ env.JOB_TRANSFER_ARTIFACT_PREFIX }}${{ matrix.artifact.job-transfer-artifact-suffix }}
519519
path: ${{ env.BUILD_ARTIFACTS_FOLDER }}
@@ -533,7 +533,7 @@ jobs:
533533
BODY: ${{ steps.changelog.outputs.BODY }}
534534
steps:
535535
- name: Checkout
536-
uses: actions/checkout@v4
536+
uses: actions/checkout@v5
537537
with:
538538
fetch-depth: 0 # To fetch all history for all branches and tags.
539539

@@ -600,7 +600,7 @@ jobs:
600600

601601
steps:
602602
- name: Download all job transfer artifacts
603-
uses: actions/download-artifact@v4
603+
uses: actions/download-artifact@v5
604604
with:
605605
merge-multiple: true
606606
path: ${{ env.ARTIFACTS_FOLDER }}
@@ -643,7 +643,7 @@ jobs:
643643

644644
steps:
645645
- name: Download all job transfer artifacts
646-
uses: actions/download-artifact@v4
646+
uses: actions/download-artifact@v5
647647
with:
648648
merge-multiple: true
649649
path: ${{ env.ARTIFACTS_FOLDER }}

.github/workflows/check-containers.yml

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

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
- name: Build and push to local registry
4646
uses: docker/build-push-action@v6

.github/workflows/check-i18n-task.yml

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

5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060

6161
- name: Install Node.js 18.17
6262
uses: actions/setup-node@v4

.github/workflows/check-javascript.yml

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

6666
steps:
6767
- name: Checkout repository
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969

7070
- name: Setup Node.js
7171
uses: actions/setup-node@v4

.github/workflows/check-yarn.yml

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

6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868

6969
- name: Setup Node.js
7070
uses: actions/setup-node@v4

.github/workflows/compose-full-changelog.yml

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

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Install Node.js
2727
uses: actions/setup-node@v4

.github/workflows/i18n-nightly-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Install Node.js 18.17
2020
uses: actions/setup-node@v4

.github/workflows/i18n-weekly-pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Install Node.js 18.17
2020
uses: actions/setup-node@v4

.github/workflows/push-container-images.yml

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

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
- name: Log in to the Container registry
4949
uses: docker/login-action@v3

.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
@@ -106,10 +106,10 @@ jobs:
106106
echo "flag=--dry-run" >> $GITHUB_OUTPUT
107107
108108
- name: Checkout repository
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v5
110110

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

0 commit comments

Comments
 (0)