From 201df32e5f7e7329cebfc5301402ab14bb248804 Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Fri, 15 Nov 2024 17:49:29 -0500 Subject: [PATCH 1/2] [nfc] Bump GitHub Runner Images Switch from Ubuntu 22.04 to 24.04. Signed-off-by: Schuyler Eldridge --- .github/workflows/cd-circt.yml | 2 +- .github/workflows/continuous-integration-ci.yml | 2 +- .github/workflows/update-contributors.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd-circt.yml b/.github/workflows/cd-circt.yml index b3b550d1..bfd69143 100644 --- a/.github/workflows/cd-circt.yml +++ b/.github/workflows/cd-circt.yml @@ -15,7 +15,7 @@ on: jobs: cd-circt: name: 'Check Version, Create PR' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: 'circt/update-circt' uses: circt/update-circt@v1 diff --git a/.github/workflows/continuous-integration-ci.yml b/.github/workflows/continuous-integration-ci.yml index 433f6343..39942a77 100644 --- a/.github/workflows/continuous-integration-ci.yml +++ b/.github/workflows/continuous-integration-ci.yml @@ -17,7 +17,7 @@ env: jobs: markdown-to-pdf: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: write steps: diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index f37a60be..928b8839 100644 --- a/.github/workflows/update-contributors.yml +++ b/.github/workflows/update-contributors.yml @@ -8,7 +8,7 @@ on: jobs: update-contributors: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: "Checkout chipsalliance/firrtl-spec" uses: actions/checkout@v4 From f3b0034df2c7c7fcd26b6c1d89a2932947395c31 Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Fri, 15 Nov 2024 17:49:52 -0500 Subject: [PATCH 2/2] [nfc] Switch to latest GitHub actions Bump all versions of GitHub actions used to their latest major versions. Signed-off-by: Schuyler Eldridge --- .github/workflows/continuous-integration-ci.yml | 4 ++-- .github/workflows/update-contributors.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration-ci.yml b/.github/workflows/continuous-integration-ci.yml index 39942a77..cf730aff 100644 --- a/.github/workflows/continuous-integration-ci.yml +++ b/.github/workflows/continuous-integration-ci.yml @@ -22,7 +22,7 @@ jobs: contents: write steps: - name: "Checkout chipsalliance/firrtl-spec" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # We use `git describe` which requires tags with: fetch-depth: 0 @@ -73,7 +73,7 @@ jobs: path: build retention-days: 1 - name: "Create Release If Tagged" - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: fail_on_unmatched_files: true diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index 928b8839..2ce1dbf8 100644 --- a/.github/workflows/update-contributors.yml +++ b/.github/workflows/update-contributors.yml @@ -17,7 +17,7 @@ jobs: run: | ./scripts/get-contributors.sh -g ${{ secrets.GITHUB_TOKEN }} > include/contributors.json - name: "Open PR If New Contributors" - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.CHISEL_BOT_TOKEN }} branch: ci/update-contributors