mirror of
https://github.com/grafana/alloy.git
synced 2025-11-05 13:28:02 +08:00
| datasource | package | from | to | | ----------- | --------------------------------------- | -------- | ------- | | github-tags | actions/cache | v4.2.4 | v4.3.0 | | github-tags | github/codeql-action | v3.29.11 | v3.31.0 | | github-tags | mr-smithers-excellent/docker-build-push | v6.7 | v6.8 | | github-tags | softprops/action-gh-release | v2.3.2 | v2.4.1 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
28 lines
714 B
YAML
28 lines
714 B
YAML
name: Check Windows build image
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'tools/build-image/windows/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-windows-build-image:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Create test Windows build image
|
|
uses: mr-smithers-excellent/docker-build-push@19d2beefef6bcdc202195fdcb9deb79a4fab5c1f # v6.8
|
|
with:
|
|
image: grafana/alloy-build-image
|
|
tags: latest
|
|
registry: docker.io
|
|
pushImage: false
|
|
dockerfile: ./tools/build-image/windows/Dockerfile
|