Skip to content

Commit

Permalink
Change Linux runner image to ubuntu-20.04 (#982)
Browse files Browse the repository at this point in the history
This change is necessary since `ubuntu-18.04` is now fully unsupported by GitHub.
  • Loading branch information
m4heshd committed Apr 8, 2023
1 parent 8935ec5 commit 8ec7b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
publish:
if: ${{ github.event_name == 'release' }}
name: Publishing to NPM
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: test
steps:
- uses: actions/checkout@v3
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-18.04
- ubuntu-20.04
- macos-latest
- windows-2019
name: Prebuild on ${{ matrix.os }}
Expand Down

3 comments on commit 8ec7b27

@rathboma
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI - this is going to break a lot of Electron deployments - see #403

@rathboma
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way to compile using an older version of glibc?

@rathboma
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.