Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Nov 12, 2022
1 parent 1e9f702 commit 7343545
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/base-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ runs:
echo "CACHE_PREFIX=${{ runner.os }}-${{ github.workflow}}-${{ github.job }}" >> $GITHUB_ENV
- name: Install Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: "x64"

- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/make-sdist/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
run: |
pip install build
python -m build --sdist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: "sdist"
path: dist/*.tar.gz
2 changes: 1 addition & 1 deletion .github/actions/pre-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:
- name: Run pre-commit
uses: pre-commit/action@v2.0.0
uses: pre-commit/action@v3
with:
extra_args: --all-files --hook-stage=manual
- name: Help message if pre-commit fail
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-sdist/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
using: "composite"
steps:
- name: Download sdist
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Install From SDist
shell: bash
run: |
Expand Down

0 comments on commit 7343545

Please sign in to comment.