Skip to content

Commit

Permalink
📌 Pin release_binary runner to ubuntu-22.04 (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronleopold authored Feb 8, 2025
1 parent fa3c0e4 commit 8678997
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
# This job builds the common webapp HTML/JS/CSS used for all platforms
build-webapp:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -26,9 +26,9 @@ jobs:
matrix:
# Note: macos-13 is intel-based, macos-latest is M1-based
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
os: [ubuntu-22.04, macos-13, macos-latest, windows-latest]
include:
- os: ubuntu-latest
- os: ubuntu-22.04
artifact_name: linux-artifact
artifact_filename: stump_server
- os: macos-13
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
# This job creates the release and organizes associated files
create-release:
needs: build-binary
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions: write-all
env:
GH_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 8678997

Please sign in to comment.