Skip to content

Commit 4d5eee0

Browse files
authored
Merge pull request #14 from bitcraze/toverumar/fix_deprecation_warning
Upgrade artifact and checkout actions to latest version.
2 parents 08f2305 + dc95771 commit 4d5eee0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
GH_TOKEN: ${{ secrets.GH_TOKEN }}
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Check and build
3434
run: docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GH_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM

.github/workflows/nightly-experiment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
PLATFORM: ${{ matrix.platform }}
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Check and build
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
run: docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GITHUB_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM nightly-experiment
3535
- name: Upload Build Artifact
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: nightly-experiment
3939
path: firmware-${{ matrix.platform }}-nightly-experiment.zip

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
PLATFORM: ${{ matrix.platform }}
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

3030
- name: Check and build
3131
env:
3232
GH_TOKEN: ${{ secrets.GH_TOKEN }}
3333
run: docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GH_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM nightly
3434

3535
- name: Upload Build Artifact
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: nightly
3939
path: firmware-${{ matrix.platform }}-nightly.zip

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Release URL on file
2929
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
3030
- name: Save Release URL File For Uploading Files
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: release_url
3434
path: release_url.txt
@@ -44,15 +44,15 @@ jobs:
4444

4545
steps:
4646
- name: Checkout Repo
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
4949
submodules: true
5050

5151
- name: Build
5252
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "./tools/build/build ${{ matrix.platform }}"
5353

5454
- name: Load Release URL File from release job
55-
uses: actions/download-artifact@v3
55+
uses: actions/download-artifact@v4
5656
with:
5757
name: release_url
5858

0 commit comments

Comments
 (0)