Skip to content

Commit

Permalink
Merge pull request #598 from biosimulators/httpx
Browse files Browse the repository at this point in the history
update actions cache and upload-artifact to v3
  • Loading branch information
eagmon committed Dec 9, 2022
2 parents 7a68471 + 3ab428b commit 10a7435
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildDockerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validateCommitSimulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
)
steps:
- name: Install Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Setup pip cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/Python
key: ${{ runner.os }}-pip-${{ hashFiles('${GITHUB_WORKSPACE}/requirements.txt') }}-${{ hashFiles('${GITHUB_WORKSPACE}/requirements.optional.txt') }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
uses: mxschmitt/action-tmate@v3

- name: Save test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: Validation test results
Expand Down

0 comments on commit 10a7435

Please sign in to comment.