Bump golang up to 1.23 #18

Merged
MrMeeb merged 2 commits from bump-golang-to-1.23 into develop 2024-09-28 20:22:57 +00:00
Showing only changes of commit 43b7e877f2 - Show all commits

View File

@ -5,7 +5,7 @@ on:
- 'develop' - 'develop'
env: env:
FULL_TAG: git.mrmeeb.stream/mrmeeb/gitea-act-runner:develop FULL_TAG: git.mrmeeb.stream/mrmeeb/gitea-act-runner
jobs: jobs:
"Build Image": "Build Image":
@ -21,12 +21,20 @@ jobs:
registry: git.mrmeeb.stream registry: git.mrmeeb.stream
username: ${{ env.GITHUB_ACTOR }} username: ${{ env.GITHUB_ACTOR }}
password: ${{ secrets.GTCR_TOKEN }} password: ${{ secrets.GTCR_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.FULL_TAG }}
tags: |
type=sha,prefix=develop-
type=raw,value=develop
- name: Build and push - name: Build and push
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
push: true push: true
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
tags: ${{ env.FULL_TAG }} tags: ${{ steps.meta.outputs.tags }}
provenance: false provenance: false
- name: Notify on failure - name: Notify on failure
uses: rjstone/discord-webhook-notify@v1 uses: rjstone/discord-webhook-notify@v1