Skip to content

build(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #350

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

Merged
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
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jobs:
- name: move tarball to top level
run: |
mv _build/xf86-input-wacom-*tar.bz2 .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ matrix.compiler == 'gcc' }}
with:
name: tarball
path: xf86-input-wacom-*tar.bz2
Expand Down Expand Up @@ -84,7 +85,7 @@ jobs:
env:
CC: ${{matrix.compiler}}
# Capture all the meson logs, even if we failed
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ always() }} # even if we fail
with:
name: meson-test-logs-${{github.job}}-${{matrix.compiler}}-${{matrix.meson_options}}
Expand All @@ -107,7 +108,7 @@ jobs:
with:
meson_args: -Dauto_features=enabled
# Capture all the meson logs, even if we failed
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ always() }} # even if we fail
with:
name: meson-test-logs-${{github.job}}
Expand All @@ -130,7 +131,7 @@ jobs:
with:
apt: $UBUNTU_PACKAGES
- name: fetch tarball from previous job(s)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tarball
- name: extract tarball
Expand Down Expand Up @@ -160,7 +161,7 @@ jobs:
apt: $UBUNTU_PACKAGES
pip: $PIP_PACKAGES
- name: fetch tarball from previous job(s)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tarball
- name: extract tarball
Expand All @@ -175,7 +176,7 @@ jobs:
meson_args: -Dauto_features=enabled --prefix="$INSTALLDIR"
ninja_args: test
# Capture all the meson logs, even if we failed
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ always() }} # even if we fail
with:
name: tarball-build-meson-test-logs
Expand All @@ -192,7 +193,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v3
- name: fetch tarball from previous job(s)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tarball
- name: list git files
Expand Down
Loading