Skip to content

Bump github.com/prometheus/prometheus from 0.300.0 to 0.300.1 #428

Bump github.com/prometheus/prometheus from 0.300.0 to 0.300.1

Bump github.com/prometheus/prometheus from 0.300.0 to 0.300.1 #428

Workflow file for this run

name: Test and build
on: push
jobs:
RunTests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go env
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run tests
run: go test -v ./... -bench=.
BuildBinaries:
needs: RunTests
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup go env
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Release new package on tag
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BuildContainer:
needs: RunTests
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
dpattmann/prometheus-timestream-adapter
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}