-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump versions of Github actions to versions using Node 20 (backport #…
…4116) (#4117) * Bump versions of Github actions to versions using Node 20 (#4116) Node 16 is deprecated and will eventually stop being supported. (cherry picked from commit 99aa9f1) # Conflicts: # .github/workflows/build-scala-cli-example.yml # .github/workflows/ci.yml # .github/workflows/install-jextract/action.yml # .github/workflows/scala-cli-example.yml # .github/workflows/test.yml * Resolve backport conflicts --------- Co-authored-by: Jack Koenig <[email protected]>
- Loading branch information
1 parent
54ee5f8
commit 7bff096
Showing
8 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,15 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Tabby OSS Cad Suite | ||
uses: ./.github/workflows/setup-oss-cad-suite | ||
- name: Install Espresso | ||
uses: ./.github/workflows/install-espresso | ||
with: | ||
version: ${{ matrix.espresso }} | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.jvm }} | ||
|
@@ -53,7 +53,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Mill | ||
uses: jodersky/[email protected] | ||
with: | ||
|
@@ -68,9 +68,9 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
|
@@ -85,13 +85,13 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Tabby OSS Cad Suite | ||
uses: ./.github/workflows/setup-oss-cad-suite | ||
- name: Install Espresso | ||
uses: ./.github/workflows/install-espresso | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
|
@@ -109,11 +109,11 @@ jobs: | |
scala: [ "2.13.10", "2.12.17" ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Install Tabby OSS Cad Suite | ||
uses: ./.github/workflows/setup-oss-cad-suite | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
|
@@ -130,9 +130,9 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
|
@@ -157,7 +157,7 @@ jobs: | |
- name: Tar built website | ||
run: tar zcf website.tar.gz website/docs/target/site | ||
- name: Share Built Website | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: website | ||
path: website.tar.gz | ||
|
@@ -167,7 +167,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
# Need to fetch full history for deriving version | ||
with: | ||
fetch-depth: 0 | ||
|
@@ -221,13 +221,13 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install CIRCT | ||
uses: ./.github/workflows/install-circt | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
|
@@ -253,7 +253,7 @@ jobs: | |
if: (github.event_name == 'push') && (github.ref_name == 'main') | ||
steps: | ||
- name: Download built website | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: website | ||
- name: Untar built website | ||
|