Skip to content

Commit

Permalink
Merge pull request #79 from srobo/extract-tooling-versions
Browse files Browse the repository at this point in the history
Extract tooling versions to files
  • Loading branch information
PeterJCLaw authored Sep 1, 2024
2 parents 8bbe9a1 + 59e0fd3 commit 40f94a3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version-file: '.python-version'

- name: Lint filenames
run: python ./scripts/lint-filenames.py
6 changes: 3 additions & 3 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version-file: '.python-version'

- name: Install dependencies
run: bash ./scripts/setup.sh

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version-file: '.node-version'

- name: Install
run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18'
node-version-file: '.node-version'

- name: Install
run: yarn install
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11

0 comments on commit 40f94a3

Please sign in to comment.