Skip to content

Bump Microsoft.ApplicationInsights.AspNetCore from 3.0.0 to 3.1.0 #88

Bump Microsoft.ApplicationInsights.AspNetCore from 3.0.0 to 3.1.0

Bump Microsoft.ApplicationInsights.AspNetCore from 3.0.0 to 3.1.0 #88

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
paths:
- "src/**"
- "Directory.Build.props"
- "Dockerfile"
- ".github/workflows/build.yml"
workflow_call:
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Login to Docker Hub
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
logout: true
- name: Build image
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
with:
context: .
push: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
load: true
pull: false
no-cache: true
tags: ${{ vars.IMAGE }}
env:
DOCKER_BUILD_SUMMARY: false
DOCKER_BUILD_RECORD_UPLOAD: false