From 6f46c161fd5e67a3bbd1c8391bdfc5ccad6ca006 Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:34:08 -0500 Subject: [PATCH] chore: upgrade actions pinning (#10) --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index ef0ef61..d03f1dc 100644 --- a/action.yml +++ b/action.yml @@ -24,20 +24,20 @@ runs: steps: - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: | /home/runner/.solcx /home/runner/.vvm/vyper-* key: ${{ runner.os }}-compiler-cache - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: | ${{ github.workspace }}/.build key: ${{ runner.os }}-build-cache - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} @@ -48,7 +48,7 @@ runs: shell: bash - name: Restore pip cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: pip-cache with: path: |