Skip to content

Bumps go version to 1.21 (latest stable) #43

Bumps go version to 1.21 (latest stable)

Bumps go version to 1.21 (latest stable) #43

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Intel Corporation
name: Pull Request
on: [pull_request]
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout and build
- uses: actions/checkout@v3
- name: Build Docker image
run: |
make docker-build
# Format the code
- name: Go Format
run: |
make fmt
- name: Show all CI changes
run: |
git --no-pager diff
# Build again and commit
- name: Build Docker image after format
run: |
make docker-build
- name: Update PR with changes
uses: gr2m/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: |
Updated with changes from CI
branch: ${{ github.event.pull_request.head.ref }}
author: "Github Actions <actions@github>"
commit-message: "Actions: Updated with changes from CI"
# - name: Run AIAB
# run: |
# sudo apt-get update
# sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
# sudo chmod a+x /usr/local/bin/yq
# make docker-build
# make run-aiab