Skip to content

Commit 3ecbbdd

Browse files
dependabot[bot]SergioGasquez
authored andcommitted
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4486c3a commit 3ecbbdd

8 files changed

+10
-10
lines changed

.github/workflows/build-aarch64-apple-darwin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
ASSET_CONTENT_TYPE: "application/x-tar"
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: esp-rs/rust
5353
ref: esp-${{ github.event.inputs.release_version }}

.github/workflows/build-aarch64-unknown-linux-gnu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
fi
6262
docker container rm rust-linux || echo "Container name rust-linux is available"
6363
- name: Checkout repository
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
- name: Build construction container
6666
run: |
6767
cd support/rust-build/aarch64-unknown-linux-gnu

.github/workflows/build-rust-src.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
ASSET_CONTENT_TYPE: "application/x-tar"
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: esp-rs/rust
5353
ref: esp-${{ github.event.inputs.release_version }}

.github/workflows/build-x86_64-apple-darwin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Check architecture
4949
run: uname -a
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
repository: esp-rs/rust
5454
ref: esp-${{ github.event.inputs.release_version }}

.github/workflows/build-x86_64-pc-windows-gnu.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
runs-on: [self-hosted, Windows]
4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
- name: Checkout repository - esp-rs/rust
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
path: rust
4747
repository: esp-rs/rust

.github/workflows/build-x86_64-pc-windows-msvc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
runs-on: [self-hosted, Windows]
4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
- name: Checkout repository - esp-rs/rust
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
path: rust
4747
repository: esp-rs/rust

.github/workflows/build-x86_64-unknown-linux-gnu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
docker container rm rust-linux || echo "Container name rust-linux is available"
5151
- name: Checkout repository
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
- name: Build construction container
5454
run: |
5555
cd support/rust-build/x86_64-unknown-linux-gnu

.github/workflows/publish-idf-rust-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
board: ["esp32", "esp32c2", "esp32c3", "esp32c6", "esp32h2", "esp32s2", "esp32s3", "all"]
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Build Docker image
2929
if: matrix.board != 'all'
3030
run: |

0 commit comments

Comments
 (0)