Skip to content

Commit 01492c0

Browse files
authored
Merge pull request #3 from rameloni/tywaves-annotations
Tywaves annotations
2 parents 28a70fc + 546b371 commit 01492c0

File tree

44 files changed

+4313
-146
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4313
-146
lines changed

.github/workflows/backport-fixup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
original_pr: ${{ steps.original.outputs.pr }}
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Figure out backport PR number
3333
id: backport
3434
run: |
@@ -57,7 +57,7 @@ jobs:
5757
if: ${{ needs.resolve_prs.outputs.original_pr }}
5858

5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
- name: Copy over labels
6262
env:
6363
GH_TOKEN: ${{ github.token }}

.github/workflows/build-scala-cli-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
# Need to fetch full history for deriving version
1919
with:
2020
fetch-depth: 0
@@ -57,7 +57,7 @@ jobs:
5757
shell: bash
5858
run: scala-cli chisel-example.scala
5959
- name: Upload Example
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: chisel-example.scala
6363
path: chisel-example.scala

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373

7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v4
7777
with:
7878
fetch-depth: 0
7979
- name: Cache Scala
@@ -105,13 +105,13 @@ jobs:
105105
if: (github.event_name == 'push') && (github.ref_name == 'main')
106106
steps:
107107
- name: Download built website
108-
uses: actions/download-artifact@v3
108+
uses: actions/download-artifact@v4
109109
with:
110110
name: website
111111
- name: Untar built website
112112
run: tar zxf website.tar.gz
113113
- name: Deploy Website to GitHub Pages (From Main Branch)
114-
uses: peaceiris/actions-gh-pages@v3
114+
uses: peaceiris/actions-gh-pages@v4
115115
with:
116116
github_token: ${{ secrets.GITHUB_TOKEN }}
117117
publish_dir: website/build

.github/workflows/enable-bincompat-checking.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
branches: ${{ steps.determine-branches.outputs.branches }}
3838

3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343
- name: Check Valid
@@ -70,14 +70,14 @@ jobs:
7070
branch: ${{ fromJson(needs.determine_branches.outputs.branches) }}
7171

7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
- name: Create file
7575
run: |
7676
VERSION=${{ needs.determine_version.outputs.version }}
7777
VERSION_NO_V=${VERSION#v}
7878
echo $VERSION_NO_V >> project/previous-versions.txt
7979
- name: Open PR
80-
uses: peter-evans/create-pull-request@v5
80+
uses: peter-evans/create-pull-request@v6
8181
with:
8282
base: ${{ matrix.branch }}
8383
branch: bincompat/${{ matrix.branch }}/${{ needs.determine_version.outputs.version }}

.github/workflows/install-espresso/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: composite
1111
steps:
1212
- id: cache-espresso
13-
uses: actions/cache@v3
13+
uses: actions/cache@v4
1414
with:
1515
path: /usr/local/bin/espresso
1616
key: espresso-${{ runner.os }}-${{ inputs.version }}

.github/workflows/install-jextract/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: composite
1111
steps:
1212
- id: cache-jextract
13-
uses: actions/cache@v3
13+
uses: actions/cache@v4
1414
with:
1515
path: jextract
1616
key: jextract-${{ runner.os }}-${{ inputs.file-name }}

.github/workflows/release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: echo "$CHANGELOG" >> $GITHUB_STEP_SUMMARY
4242
- name: Upload Release Notes (on release)
4343
if: github.event_name == 'release'
44-
uses: softprops/action-gh-release@v0.1.15
44+
uses: softprops/action-gh-release@v2.0.5
4545
with:
4646
body: ${{ steps.release-notes.outputs.changelog }}
4747
- name: Error on uncategorized PRs

.github/workflows/require-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Check Labels
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: docker://agilepathway/pull-request-label-checker:v1.4.25
19+
- uses: docker://agilepathway/pull-request-label-checker:v1.6.32
2020
with:
2121
one_of: Feature,Performance,API Modification,Deprecation,Backend Code Generation,Bugfix,Documentation,Dependency Update,Internal,No Release Notes
2222
repo_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/scala-cli-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Download Generated CLI Example
20-
uses: actions/download-artifact@v3
20+
uses: actions/download-artifact@v4
2121
with:
2222
name: chisel-example.scala
2323
- name: Display Example
@@ -27,6 +27,6 @@ jobs:
2727
echo '```' >> $GITHUB_STEP_SUMMARY
2828
- name: Upload To Release Page
2929
if: github.event_name == 'release'
30-
uses: softprops/action-gh-release@v0.1.15
30+
uses: softprops/action-gh-release@v2.0.5
3131
with:
3232
files: chisel-example.scala

.github/workflows/setup-oss-cad-suite/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: composite
1111
steps:
1212
- id: cache-oss-cad-suite
13-
uses: actions/cache@v3
13+
uses: actions/cache@v4
1414
with:
1515
path: oss-cad-suite
1616
key: oss-cad-suite-${{ runner.os }}-${{ inputs.version }}

0 commit comments

Comments
 (0)