Skip to content

Commit 9b9b1ea

Browse files
POC removing python from tools-version
1 parent 72b1856 commit 9b9b1ea

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/actions/build-docs/action.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,25 @@ runs:
1212
- uses: actions/setup-node@v6
1313
with:
1414
node-version: 24
15-
- name: Npm cli install dependencies # ideally to move to Makefile
16-
working-directory: ./docs
17-
run: npm ci
18-
shell: bash
15+
#- name: Npm cli install dependencies # ideally to move to Makefile
16+
# working-directory: ./docs
17+
# run: npm ci
18+
# shell: bash
1919
- name: Setup Ruby
2020
uses: ruby/[email protected]
2121
with:
2222
ruby-version: "3.4.7" # Not needed with a .ruby-version file
2323
bundler-cache: false # runs 'bundle install' and caches installed gems automatically
2424
#cache-version: 0 # Increment this number if you need to re-download cached gems
2525
working-directory: "./docs"
26+
- uses: actions/setup-python@v6
27+
with:
28+
python-version: '3.14'
2629
- name: "Setup ASDF"
27-
uses: asdf-vm/actions/install@f4acd427436df623426c29f7e3e9ea715be28396 # v4
30+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
2831
with:
2932
working-directory: "./src/cloudevents"
33+
asdf_version: "v0.18.0"
3034
- name: Setup Pages
3135
id: pages
3236
uses: actions/configure-pages@v5

src/.tool-versions

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
11
jq 1.6
2-
nodejs 24.10.0
3-
python 3.14.0
4-
ruby 3.4.7

src/cloudevents/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,5 @@ asdf-install-test:
140140
@echo "asdf installation complete"
141141

142142
deploy-ci:
143-
# npm ci
143+
npm ci
144144
make deploy

0 commit comments

Comments
 (0)