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

Combine dependabot commits #51

Merged
merged 2 commits into from
Aug 13, 2024
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
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
sh pd-lib-builder-iem-ci/localdeps/localdeps.linux.sh pkglibdir/asdf/asdf~.pd_linux
- name: Upload Pd external
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Linux Pd external
path: pure-data/pkglibdir/asdf/*
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
run: |
sh pd-lib-builder-iem-ci/localdeps/localdeps.macos.sh pkglibdir/asdf/asdf~.pd_darwin
- name: Upload Pd external
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macOS Pd external
path: pure-data/pkglibdir/asdf/*
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
run: |
sh pd-lib-builder-iem-ci/localdeps/localdeps.win.sh pkglibdir/asdf/asdf~.dll
- name: Upload Pd external
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Windows Pd external
path: pure-data/pkglibdir/asdf/*
Expand Down Expand Up @@ -222,17 +222,17 @@ jobs:
- name: Clone Git repository
uses: actions/checkout@v3
- name: Retrieve Linux external
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Linux Pd external
path: asdf
- name: Retrieve macOS external
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: macOS Pd external
path: asdf
- name: Retrieve Windows external
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Windows Pd external
path: asdf
Expand All @@ -249,7 +249,7 @@ jobs:
run: |
deken package -v $(git describe --tags --always) --objects pure-data/objects.txt asdf
- name: Upload deken package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Deken package
path: "*.dek*"
Expand Down
Loading