Skip to content

Commit

Permalink
chore: action upgrades (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jan 31, 2024
1 parent 61ea0da commit 3004dd9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_ape_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
'git+https://github.com/ApeWorX/ape.git@main',
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check version pin
id: check-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
'tokens==0.6.1'
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check plugins
id: check-plugins
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This will either be the same as the `ape-version-pin` input if you provided that

```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ApeWorX/github-action@v2
with:
python-version: '3.10' # (optional)
Expand Down
9 changes: 4 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ runs:
using: 'composite'

steps:
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
/home/runner/.solcx
/home/runner/.vvm/vyper-*
key: ${{ runner.os }}-compiler-cache

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.build
key: ${{ runner.os }}-build-cache

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand All @@ -61,7 +61,7 @@ runs:
shell: bash

- name: Restore pip cache
uses: actions/cache@v3
uses: actions/cache@v4
id: pip-cache
with:
path: |
Expand Down Expand Up @@ -122,7 +122,6 @@ runs:
ape plugins install $plugins_value
shell: bash

- name: Check requirments.txt exists
id: check-requirements-txt
uses: andstor/file-existence-action@v3
Expand Down

0 comments on commit 3004dd9

Please sign in to comment.