Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github actions to resolve nodejs 16 warnings #128

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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