• 1.1.4 09ac5b3605

    v1.1.4
    All checks were successful
    ci/woodpecker/tag/release Pipeline was successful
    ci/woodpecker/push/ci Pipeline was successful
    ci/woodpecker/cron/trivy Pipeline was successful
    ci/woodpecker/cron/renovate Pipeline was successful
    ci/woodpecker/cron/download Pipeline was successful
    Stable

    onlyati released this 2026-03-24 17:19:26 +00:00 | 23 commits to main since this release

    What's new

    Maintenance

    Downloads
  • 1.1.3 c35cab5a34

    v1.1.3
    All checks were successful
    ci/woodpecker/cron/renovate Pipeline was successful
    ci/woodpecker/cron/download Pipeline was successful
    Stable

    OnlyAti released this 2026-03-17 18:17:19 +00:00 | 26 commits to main since this release

    Downloads
  • 1.1.2 76fd0e27b6

    v1.1.2 Stable

    OnlyAti released this 2026-03-13 17:17:45 +00:00 | 28 commits to main since this release

    Downloads
  • 1.1.1 8d93eb8d00

    v1.1.1 Stable

    OnlyAti released this 2026-03-06 13:38:05 +00:00 | 29 commits to main since this release

    Downloads
  • 1.1.0 38b709ed6f

    v1.1.0 Stable

    OnlyAti released this 2026-03-02 23:27:35 +00:00 | 34 commits to main since this release

    What's new

    Features

    Downloads
  • 1.0.0 4eaf0064f4

    v1.0.0 Stable

    OnlyAti released this 2026-03-01 01:02:56 +00:00 | 38 commits to main since this release

    Mirror for Go language

    This repository contains code that mirrors the latest supported Go versions from
    https://go.dev/dl/ into a local bucket after go/ prefix.

    The function can be called from Woodpecker CI via workflow.

    The uploaded Go version later downloaded in other project, like
    https://git.thinkaboutit.tech/pandora/prepare-go.woodpecker.

    Usage

    It can be used at any event, but the best maybe via cron in planned times.

    when:
      event: [manual, cron]
      cron: "download"
    
    steps:
      - name: Scrap latest Go versions
        image: git.thinkaboutit.tech/pandora/go.mirror
        settings:
          s3_access_key:
            from_secret: s3-access-key
          s3_secret_key:
            from_secret: s3-secret-key
          s3_bucket: my_bucket
          debug: true
    

    Settings

    Name Default value Description
    s3_access_key Access key for s3
    s3_secret_key Secret key for s3
    s3_url https://s3.de.io.cloud.ovh.net URL for s3
    s3_region de Region of S3
    s3_bucket Name of the bucket
    Downloads