Skip to content

Commit

Permalink
ci(tt_datasheet): upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Mar 1, 2024
1 parent 5bc9c36 commit e229979
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tt_datasheet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
TT_CONFIG: sky130of.yaml
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
Expand All @@ -48,20 +48,20 @@ jobs:
run: mkdir hugo && python ./tt/configure.py --build-hugo-content hugo

- name: Archive PDF
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PDF
path: datasheet.pdf

- name: upload shuttle_index.json
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: shuttle_index
path: shuttle_index.json

- name: upload hugo content
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hugo_content
path: hugo
Expand All @@ -72,7 +72,7 @@ jobs:
cp datasheet.pdf shuttle_index.json gh_pages
- name: Upload
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: 'gh_pages'

Expand All @@ -91,4 +91,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit e229979

Please sign in to comment.