Skip to content

Commit

Permalink
Update older actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Mar 15, 2024
1 parent d646d79 commit b3b64ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/pip/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
run: echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v4
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
cache: pip
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/pipenv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ runs:
fetch-depth: ${{ inputs.fetch-depth }}
- name: Set up cached Python ${{ inputs.python-version }}
if: ${{ inputs.cache == 'true' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
cache: pipenv
cache-dependency-path: 'Pipfile'
- name: Set up Python ${{ inputs.python-version }}
if: ${{ inputs.cache != 'true' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- shell: bash
if: steps.preserve-envvars.outputs.PKG_CONFIG_PATH
run: echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${{ steps.preserve-envvars.outputs.PKG_CONFIG_PATH }}" >> "$GITHUB_ENV"
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v2
uses: andstor/file-existence-action@v3
with:
files: "Pipfile.lock"
- name: Restore Pipfile.lock if not in git
Expand Down
1 change: 1 addition & 0 deletions newsfragments/160.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update older actions used.

0 comments on commit b3b64ee

Please sign in to comment.