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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #48

Open
wants to merge 1 commit into
base: main
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 @@ -285,7 +285,7 @@ jobs:
- name: install cibuildwheel
run: python -m pip install cibuildwheel
- name: download artifacts for PyTAT
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: README-of-PyTAT
path: PyTAT
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
- name: install python build
run: python -m pip install build
- name: download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: README-of-${{matrix.package}}
path: ${{matrix.package}}
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:

steps:
- name: download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
- name: setup python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
- name: generate release description
run: python .github/scripts/generate_release_description.py
- name: download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
- name: release
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: install emacs, pygments and texlive
run: sudo apt-get update && sudo apt-get install -y emacs python3-pygments texlive-full
- name: download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: artifact
- name: export to pdf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documents_zh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: install emacs, pygments and texlive
run: sudo apt-get update && sudo apt-get install -y emacs python3-pygments texlive-full
- name: download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: artifact
- name: export to pdf
Expand Down
Loading