mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
name: Go version
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- Dockerfile
|
|
|
|
jobs:
|
|
version-sync:
|
|
name: Synchronise go-version
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get Go version from Dockerfile
|
|
run: |
|
|
echo "GO_VERSION=$(grep 'FROM golang:' Dockerfile | cut -d ':' -f2 | cut -d '-' -f1 | tr -d '\n')" >> $GITHUB_ENV
|
|
|
|
- name: Synchronise Go version in actions
|
|
run: |
|
|
sed -i -E s/'([\ \t]+)go-version: .+'/'\1go-version: ${{ env.GO_VERSION }}'/g .github/workflows/*
|
|
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v5.0.2
|
|
with:
|
|
token: ${{ secrets.GH_REPO_TOKEN }}
|
|
author: "Łukasz Mierzwa <l.mierzwa@gmail.com>"
|
|
commit-message: "chore(actions): use latest Go version"
|
|
branch: version-sync-go
|
|
delete-branch: true
|
|
title: "chore(actions): use latest Go version"
|
|
|
|
- name: Check outputs
|
|
run: |
|
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
|
|
|
- name: Enable Pull Request Automerge
|
|
if: steps.cpr.outputs.pull-request-operation == 'created'
|
|
run: gh pr merge --merge --auto version-sync-go
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
|