Skip to content

build(deps): bump tj-actions/changed-files from 42.1.0 to 43.0.0 #614

build(deps): bump tj-actions/changed-files from 42.1.0 to 43.0.0

build(deps): bump tj-actions/changed-files from 42.1.0 to 43.0.0 #614

Workflow file for this run

name: Build
on:
workflow_call:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build-go:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5.0.0
with:
go-version: "1.19"
- name: Build go project
run: |
make build
build-docker:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build docker image
run: |
docker build .