Skip to content

Commit

Permalink
Upgrade actions to fix set-output warnings (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
IdanYaffe authored Oct 26, 2022
1 parent e63d2d0 commit 5f8f24e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions init-pants/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
using: "composite"
steps:
- name: 'Set up Python for Pants (${{ inputs.pants-python-version }})'
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '${{ inputs.pants-python-version }}'

Expand All @@ -47,14 +47,14 @@ runs:
- name: Cache Pants Setup
id: cache-pants-setup
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cache/pants/setup
key: pants-setup-${{ steps.pants_version.outputs.pants_bootstrap_cache_key }}

- name: Cache Pants Named Caches (${{ inputs.gha-cache-key }})
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-pants-named-caches
with:
path: |
Expand Down Expand Up @@ -84,7 +84,7 @@ runs:

- name: Cache Pants LMDB Store (${{ inputs.gha-cache-key }})
if: ${{ inputs.cache-lmdb-store == 'true' }}
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-pants-lmdb-store
with:
path: |
Expand Down

0 comments on commit 5f8f24e

Please sign in to comment.