Skip to content

Update workflow step versions #69

Update workflow step versions

Update workflow step versions #69

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 #v5.0.0
with:
go-version: 1.21
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@0d103c3126aa41d772a8362f6aa67afac040f80c #v3
- name: Build
run: go run build.go
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}