Skip to content

Commit

Permalink
Update setup-python and checkout actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bennybp committed Nov 11, 2023
1 parent 0a59c5d commit c82c79d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # needed for tag/version

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Clone the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install package
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
# (testing installed BSE, not the source tree)
- name: Clone QCSchema HEAD
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: molssi/QCSchema
path: deps/QCSchema
Expand Down

0 comments on commit c82c79d

Please sign in to comment.