image #429
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: image | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
permissions: | |
contents: read | |
on: | |
schedule: | |
- cron: '0 8 */6 * *' # every 6 days to keep cache | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
uses: ./.github/workflows/.build.yml | |
permissions: | |
# same as global permissions | |
contents: read | |
# required to push to GHCR | |
packages: write | |
secrets: inherit | |
strategy: | |
fail-fast: false | |
matrix: | |
go_version: | |
- "1.23.0" | |
- "1.23.1" | |
- "1.23.2" | |
- "1.23.3" | |
- "1.23.4" | |
- "1.23.5" | |
- "1.23.6" | |
- "1.23.7" | |
- "1.24.0" | |
- "1.24.1" | |
with: | |
go_version: ${{ matrix.go_version }} | |
latest_current: "1.24.1" | |
latest_previous: "1.23.7" |