Skip to content

Commit

Permalink
Update github actions to resolve nodejs 16 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
willingc authored and lwasser committed Mar 8, 2024
1 parent 1d3396c commit 5256f04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: write # this permission is mandatory for pypi publishing
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This fetch element is only important if you are use SCM based
# versioning (that looks at git tags to gather the version)
Expand All @@ -28,7 +28,7 @@ jobs:
run: git fetch origin 'refs/tags/*:refs/tags/*'

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Hatch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
# TODO: consider replacing python/pip/update-web-metadata installs with docker image
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
- name: Upgrade pip
run: |
# install pip=>20.1 to use "pip cache dir"
Expand All @@ -20,7 +20,7 @@ jobs:
run: python -m pip install git+https://github.com/pyopenSci/update-web-metadata

- name: Check out the code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run script from update-web-metadata repo
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down

0 comments on commit 5256f04

Please sign in to comment.