Skip to content

Commit

Permalink
Merge pull request #24 from SuffolkLITLab/bump_setup_and_checkout_ver…
Browse files Browse the repository at this point in the history
…sions

Update checkout to v4 and setup-python to v5
  • Loading branch information
nonprofittechy authored May 29, 2024
2 parents 328d82c + 401f8c2 commit a6050de
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion black-formatting/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check files using the black formatter
uses: psf/black@stable
id: action_black
Expand Down
4 changes: 2 additions & 2 deletions docsig/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install docsig
Expand Down
2 changes: 1 addition & 1 deletion hall_monitor/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- run: pip install bs4 requests sendgrid
Expand Down
6 changes: 3 additions & 3 deletions publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ runs:
echo "GITHUB_REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV
echo "GITHUB_SERVER=${{ github.server_url}}/${{ github.repository }}" >> $GITHUB_ENV
shell: bash
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install pypa/build
Expand Down
4 changes: 2 additions & 2 deletions pythontests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ runs:
shell: bash
- run: echo "ISUNITTEST=true" >> $GITHUB_ENV
shell: bash
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
Expand Down

0 comments on commit a6050de

Please sign in to comment.