Skip to content

Commit

Permalink
Merge pull request #33 from kchason/update-github-action-versions
Browse files Browse the repository at this point in the history
Update GitHub Actions
  • Loading branch information
dc3-tsd authored Mar 21, 2024
2 parents 68c569d + 750a193 commit 853f4c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
steps:
# Get the code from the repository to be packaged
- name: Get Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

# Setup the Python environment (currently Python 2.7). This will need to be
# updated when the project is upgraded to Python 3.x
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

# Upload the PyTest HTML coverage report for review
- name: Upload PyTest Coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: htmlcov
Expand All @@ -69,7 +69,7 @@ jobs:
# Upload the HTML documentation for distribution
- name: Upload HTML Docs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: html-docs
path: ./docs/build/
Expand Down

0 comments on commit 853f4c5

Please sign in to comment.