vagrant/.github/workflows/dev-debs-build.yml
dependabot[bot] f9e2630d69
Some checks failed
/ sync-acceptance (push) Has been cancelled
Bump actions/checkout from 6.0.1 to 6.0.2 (#13784)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-08 10:09:49 +05:30

20 lines
620 B
YAML

name: DEB Vagrant Development Build
on:
push:
branches: 'dev-debs-*'
workflow_dispatch:
jobs:
trigger-build:
if: github.repository == 'hashicorp/vagrant'
name: Trigger Vagrant DEB Development Build
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Trigger Development Build
run: ./.ci/dev-build "${BRANCH}" "${COMMIT_ID}" build-debs
env:
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
BRANCH: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}