mirror of
https://github.com/actions/go-versions.git
synced 2026-01-29 21:48:49 +00:00
Compare commits
2 Commits
main
...
test-macos
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aaad9f0c8c | ||
|
|
c862fccfaf |
2
.github/workflows/build-go-packages.yml
vendored
2
.github/workflows/build-go-packages.yml
vendored
@@ -23,7 +23,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
go:
|
go:
|
||||||
name: Go
|
name: Go
|
||||||
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@main
|
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@replacemacos-13
|
||||||
with:
|
with:
|
||||||
tool-name: "go"
|
tool-name: "go"
|
||||||
tool-version: ${{ inputs.VERSION || '1.19.0' }}
|
tool-version: ${{ inputs.VERSION || '1.19.0' }}
|
||||||
|
|||||||
4
.github/workflows/get-go-versions.yml
vendored
4
.github/workflows/get-go-versions.yml
vendored
@@ -1,7 +1,7 @@
|
|||||||
name: Get Go versions
|
name: Get Go versions
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0,12 * * *'
|
- cron: '0 3,15 * * *'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -10,4 +10,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
tool-name: "Go"
|
tool-name: "Go"
|
||||||
image-url: "https://go.dev/images/gopher-footer.jpg"
|
image-url: "https://go.dev/images/gopher-footer.jpg"
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@@ -66,7 +66,7 @@ class GoBuilder {
|
|||||||
|
|
||||||
$filename = "$goVersion.$goPlatform-$arch.$ArchiveType"
|
$filename = "$goVersion.$goPlatform-$arch.$ArchiveType"
|
||||||
|
|
||||||
return "https://go.dev/dl/$filename"
|
return "https://storage.googleapis.com/golang/$filename"
|
||||||
}
|
}
|
||||||
|
|
||||||
[string] Download() {
|
[string] Download() {
|
||||||
|
|||||||
@@ -8,26 +8,15 @@ Describe "Go" {
|
|||||||
$sourceLocation = Get-Location
|
$sourceLocation = Get-Location
|
||||||
|
|
||||||
function Get-UseGoLogs {
|
function Get-UseGoLogs {
|
||||||
$runnerProc = Get-Process -Name "Runner.Listener" -ErrorAction SilentlyContinue | Select-Object -First 1
|
# GitHub Windows images don't have `HOME` variable
|
||||||
#Write-Host "`$runnerProc: $($runnerProc | Out-String)"
|
$homeDir = $env:HOME ?? $env:HOMEDRIVE
|
||||||
if (-not $runnerProc -or -not $runnerProc.Path) {
|
$possiblePaths = @(
|
||||||
Write-Error "Runner.Listener process not found."
|
Join-Path -Path $homeDir -ChildPath "actions-runner/cached/_diag/pages"
|
||||||
return
|
Join-Path -Path $homeDir -ChildPath "runners/*/_diag/pages"
|
||||||
}
|
)
|
||||||
# Go up two directories to get runner root
|
|
||||||
$runnerRoot = Split-Path (Split-Path $runnerProc.Path -Parent) -Parent
|
|
||||||
#Write-Host "`$runnerRoot: $runnerRoot"
|
|
||||||
# Recursively find all _diag/pages folders under the runner root directory
|
|
||||||
$possiblePaths = Get-ChildItem -Path $runnerRoot -Directory -Recurse -Depth 4 -ErrorAction SilentlyContinue |
|
|
||||||
Where-Object { $_.FullName -like "*_diag\pages" -or $_.FullName -like "*_diag/pages" }
|
|
||||||
Write-Host "LogsPaths:"
|
|
||||||
$possiblePaths | ForEach-Object { Write-Host $_.FullName }
|
|
||||||
|
|
||||||
|
|
||||||
$logsFolderPath = $possiblePaths | Where-Object { Test-Path $_ } | Select-Object -First 1
|
$logsFolderPath = $possiblePaths | Where-Object { Test-Path $_ } | Select-Object -First 1
|
||||||
if ($logsFolderPath) {
|
$resolvedPath = Resolve-Path -Path $logsFolderPath -ErrorAction SilentlyContinue
|
||||||
$resolvedPath = Resolve-Path -Path $logsFolderPath -ErrorAction SilentlyContinue
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($resolvedPath -and -not [string]::IsNullOrEmpty($resolvedPath.Path) -and (Test-Path $resolvedPath.Path)) {
|
if ($resolvedPath -and -not [string]::IsNullOrEmpty($resolvedPath.Path) -and (Test-Path $resolvedPath.Path)) {
|
||||||
$useGoLogFile = Get-ChildItem -Path $resolvedPath | Where-Object {
|
$useGoLogFile = Get-ChildItem -Path $resolvedPath | Where-Object {
|
||||||
|
|||||||
@@ -1,606 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"version": "1.25.6",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.6-21053840953",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.6-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.6-21053840953/go-1.25.6-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.5",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.5-19880500865",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.5-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.5-19880500865/go-1.25.5-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.4",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.4-19122936812",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.4-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.4-19122936812/go-1.25.4-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.3",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.3-18483679098",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.3-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.3-18483679098/go-1.25.3-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.2",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.2-18331015608",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.2-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.2-18331015608/go-1.25.2-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.1-17451174567",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.1-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.1-17451174567/go-1.25.1-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.25.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.25.0-16925932082",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.25.0-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.25.0-16925932082/go-1.25.0-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.12",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.12-21053836768",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.12-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.12-21053836768/go-1.24.12-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.11",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.11-19880504225",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.11-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.11-19880504225/go-1.24.11-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.10",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.10-19122940106",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.10-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.10-19122940106/go-1.24.10-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.9",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.9-18483682169",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.9-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.9-18483682169/go-1.24.9-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.8",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.8-18331018734",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.8-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.8-18331018734/go-1.24.8-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.7",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.7-17451178159",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.7-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.7-17451178159/go-1.24.7-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "1.24.6",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.24.6-16792114823",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.24.6-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.24.6-16792114823/go-1.24.6-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "1.24.5",
|
"version": "1.24.5",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -859,49 +257,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "1.23.12",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/go-versions/releases/tag/1.23.12-16792118003",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-darwin-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-darwin-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-linux-arm64.tar.gz",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-linux-arm64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-win32-arm64.zip",
|
|
||||||
"arch": "arm64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-win32-arm64.zip"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "go-1.23.12-win32-x64.zip",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/go-versions/releases/download/1.23.12-16792118003/go-1.23.12-win32-x64.zip"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "1.23.11",
|
"version": "1.23.11",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user