Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
'default_with_version_config',
'default_without_version_in_config',
'tokens',
'tokens==0.8.3'
'tokens==0.8.9'
]
config-file: [
'ape-config.yaml',
Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,27 @@ runs:
using: 'composite'

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

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

- uses: actions/cache@v4
- uses: actions/cache@v5
name: Ape data cache
with:
path: $HOME/.ape
key: ${{ runner.os }}-apedata-cache

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

Expand Down Expand Up @@ -94,7 +94,7 @@ runs:
shell: bash

- name: Restore pip cache
uses: actions/cache@v4
uses: actions/cache@v5
id: pip-cache
with:
path: |
Expand Down
Loading