Skip to content

Commit 81d5bc8

Browse files
committed
(ci) Update versions of actions
1 parent a849081 commit 81d5bc8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
config: [arduino-cli.yaml, arduino-cli-dev.yaml]
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- uses: arduino/setup-arduino-cli@v1
2626
- name: Download board
2727
run: |
@@ -89,10 +89,10 @@ jobs:
8989

9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393

9494
- name: Cache PlatformIO
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
with:
9797
key: ${{ runner.os }}-pio
9898
path: |
@@ -138,7 +138,7 @@ jobs:
138138
container: espressif/idf:${{ matrix.idf_ver }}
139139
steps:
140140
- name: Checkout
141-
uses: actions/checkout@v5
141+
uses: actions/checkout@v6
142142
with:
143143
path: components/asynctcp
144144

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout latest commit
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 2
2929

.github/workflows/publish-pio-registry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-tags: true
2222
fetch-depth: 0 # Ensure all commits and tags are fetched
@@ -39,7 +39,7 @@ jobs:
3939
curl -L -o project.zip "https://github.com/${{ github.repository }}/archive/refs/tags/$TAG_NAME.zip"
4040
4141
- name: Cache PlatformIO
42-
uses: actions/cache@v4
42+
uses: actions/cache@v5
4343
with:
4444
key: ${{ runner.os }}-pio
4545
path: |

.github/workflows/upload-idf-component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "Tag: $tag"
3737
echo "RELEASE_TAG=$tag" >> $GITHUB_ENV
3838
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
ref: ${{ inputs.git_ref || env.RELEASE_TAG }}
4242
submodules: "recursive"

0 commit comments

Comments
 (0)