Skip to content

Commit

Permalink
Use v3 actions (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos authored Apr 18, 2023
1 parent b1ab983 commit 3980c72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- run: python3 --version
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Python dependencies, Build, and Test
Expand All @@ -30,7 +30,7 @@ jobs:
python: ["3.10", "3.11"]
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
Expand All @@ -52,7 +52,7 @@ jobs:
python: ["3.10"]
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
Expand All @@ -64,7 +64,7 @@ jobs:
run: make bundle-docs
- name: Archive docset
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pyteal.docset
path: docs/pyteal.docset.tar.gz
Expand All @@ -76,7 +76,7 @@ jobs:
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- run: python3 --version
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check for code changes
Expand All @@ -35,7 +35,7 @@ jobs:
python: ["3.10", "3.11"]
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check for code changes
Expand Down

0 comments on commit 3980c72

Please sign in to comment.