neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Allow for Windows'25 container (#388)
b94e7d3 · Loïc Hoguin · 2025-10-01 11:12
Files changed
modified
README.md
+3
−1
@@ -84,6 +84,7 @@ and Erlang/OTP.
| 84 | 84 | | `ubuntu-24.04` | 24.3 - 28 | x86_64, arm64 | ✅ |
| 85 | 85 | | `windows-2019` | 21\* - 25 | x86_64, x86 | ✅ |
| 86 | 86 | | `windows-2022` | 21\* - 28 | x86_64, x86 | ✅ |
| 87 | +| `windows-2025` | 21\* - 28 | x86_64, x86 | ✅ | |
| 87 | 88 | | `macOS-13` | 25.0 - 28 | x86_64, arm64 | ✅ |
| 88 | 89 | | `macOS-14` | 25.0 - 28 | x86_64, arm64 | ✅ |
| 89 | 90 | | `macOS-15` | 25.0 - 28 | x86_64, arm64 | ✅ |
@@ -102,6 +103,7 @@ uses that to download assets:
| 102 | 103 | | `ubuntu24` | `ubuntu-24.04` |
| 103 | 104 | | `win19` | `windows-2019` |
| 104 | 105 | | `win22` | `windows-2022` |
| 106 | +| `win25` | `windows-2025` | |
| 105 | 107 | | `macos13` | `macOS-13` |
| 106 | 108 | | `macos14` | `macOS-14` |
| 107 | 109 | | `macos15` | `macOS-15` |
@@ -297,7 +299,7 @@ on: push
| 297 | 299 | |
| 298 | 300 | jobs: |
| 299 | 301 | test: |
| 300 | − runs-on: windows-2022 | |
| 302 | + runs-on: windows-2025 | |
| 301 | 303 | steps: |
| 302 | 304 | - uses: actions/checkout@v4 |
| 303 | 305 | - uses: erlef/setup-beam@v1 |
modified
dist/index.js
+1
−0
@@ -26523,6 +26523,7 @@ function getRunnerOSVersion() {
| 26523 | 26523 | ubuntu24: 'ubuntu-24.04', |
| 26524 | 26524 | win19: 'windows-2019', |
| 26525 | 26525 | win22: 'windows-2022', |
| 26526 | + win25: 'windows-2025', | |
| 26526 | 26527 | macos13: 'macOS-13', |
| 26527 | 26528 | macos14: 'macOS-14', |
| 26528 | 26529 | macos15: 'macOS-15', |
modified
src/setup-beam.js
+1
−0
@@ -648,6 +648,7 @@ function getRunnerOSVersion() {
| 648 | 648 | ubuntu24: 'ubuntu-24.04', |
| 649 | 649 | win19: 'windows-2019', |
| 650 | 650 | win22: 'windows-2022', |
| 651 | + win25: 'windows-2025', | |
| 651 | 652 | macos13: 'macOS-13', |
| 652 | 653 | macos14: 'macOS-14', |
| 653 | 654 | macos15: 'macOS-15', |
Parents: 033f103