Skip to content

Commit

Permalink
Update versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Sep 10, 2024
1 parent 8cd5a44 commit d435d55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheel-tree.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Add safe git directory
uses: Chia-Network/actions/git-mark-workspace-safe@main

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -39,7 +39,7 @@ jobs:
auditwheel repair --no-update-tags -w dist $FILE || true
done
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: ./dist
8 changes: 4 additions & 4 deletions .github/workflows/build-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Add safe git directory
uses: Chia-Network/actions/git-mark-workspace-safe@main

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -45,7 +45,7 @@ jobs:
pip install build
python -m build --sdist --outdir dist .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: ./dist
Expand All @@ -57,7 +57,7 @@ jobs:
- build-wheels
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -67,7 +67,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
path: ./dist
Expand Down

0 comments on commit d435d55

Please sign in to comment.