Skip to content

Bump github/codeql-action from 1 to 3 #149

Bump github/codeql-action from 1 to 3

Bump github/codeql-action from 1 to 3 #149

Workflow file for this run

name: Release
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
version: latest
- uses: actions/checkout@v3
- name: Build
run: make build
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build the Docker image and push
run: make docker-buildx-push