Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/upload-artifact from 3 to 4 #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
run: tar zcf sources.tar.gz sources

- name: Archive Source Bundle
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: source-bundle
path: sources.tar.gz
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
./cibuild.sh -c -A -R testlist/${{matrix.boards}}.dat
fi

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: linux-builds
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
cd sources/nuttx/tools/ci
./cibuild.sh -i -c -A -R testlist/${{matrix.boards}}.dat

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: macos-builds
path: buildartifacts/
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
cd sources/nuttx/tools/ci
./cibuild.sh -g -i -A -C -R testlist/${{matrix.boards}}.dat

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: msys2-builds
path: buildartifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
pip3 install pipenv
pipenv install
pipenv run make html latexpdf
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sphinx-docs
path: |
Expand Down
Loading