Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
scottprahl committed May 31, 2024
1 parent 9a091b3 commit 766c414
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- uses: actions/setup-python@master
- uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/update_citation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
with:
ref: master
- name: Checkout code
uses: actions/checkout@v4

- uses: actions/setup-python@master
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Install dependencies
run: |
pip install requests PyYAML
pip install requests PyYAML needed for update_citation.py
- name: Update CITATION.cff
run: |
Expand Down

0 comments on commit 766c414

Please sign in to comment.