Skip to content

Commit

Permalink
Version bump of github actions from obsolete v3 to current v4 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
smountenay-tt authored Feb 5, 2025
1 parent 0e583da commit 8df79f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: v22.1.0
- run: npm install
Expand All @@ -38,7 +38,7 @@ jobs:
python -m build --wheel
- name: Upload wheel as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-wheel
path: dist/*.whl
Expand All @@ -50,17 +50,17 @@ jobs:

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

- name: Download wheel artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-wheel
path: /home/runner/work/ttnn-visualizer/
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@v1.3.1

- name: Get wheel file name
id: get_wheel
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# TODO Replace email with official email
- run: git config --global user.email "support@tenstorrent.com"
- run: git config --global user.name "CI Job"

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: v22.1.0

Expand Down

0 comments on commit 8df79f7

Please sign in to comment.