Skip to content

Commit 3004dd9

Browse files
authored
chore: action upgrades (#32)
1 parent 61ea0da commit 3004dd9

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/test_ape_version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
'git+https://github.com/ApeWorX/ape.git@main',
2828
]
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131

3232
- name: Check version pin
3333
id: check-version

.github/workflows/test_plugins.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
'tokens==0.6.1'
2727
]
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Check plugins
3232
id: check-plugins

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This will either be the same as the `ape-version-pin` input if you provided that
4242

4343
```yaml
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- uses: ApeWorX/github-action@v2
4747
with:
4848
python-version: '3.10' # (optional)

action.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ runs:
2626
using: 'composite'
2727

2828
steps:
29-
- uses: actions/cache@v3
29+
- uses: actions/cache@v4
3030
with:
3131
path: |
3232
/home/runner/.solcx
3333
/home/runner/.vvm/vyper-*
3434
key: ${{ runner.os }}-compiler-cache
3535

36-
- uses: actions/cache@v3
36+
- uses: actions/cache@v4
3737
with:
3838
path: |
3939
${{ github.workspace }}/.build
4040
key: ${{ runner.os }}-build-cache
4141

42-
- uses: actions/setup-python@v4
42+
- uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ inputs.python-version }}
4545

@@ -61,7 +61,7 @@ runs:
6161
shell: bash
6262

6363
- name: Restore pip cache
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
id: pip-cache
6666
with:
6767
path: |
@@ -122,7 +122,6 @@ runs:
122122
ape plugins install $plugins_value
123123
124124
shell: bash
125-
126125
- name: Check requirments.txt exists
127126
id: check-requirements-txt
128127
uses: andstor/file-existence-action@v3

0 commit comments

Comments
 (0)