mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
72e168e653
* switch to darwin compatible shasum
* add bazel rule
* update shellscript for in-place updates
* Revert "update shellscript for in-place updates"
This reverts commit 87d39b06f7
.
* add version tool freshness check
* remove pseudo-version file
* revert to `sha256sum`
* fix workflow indentation
25 lines
510 B
YAML
25 lines
510 B
YAML
name: Pseudo-Version tool freshness check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- renovate/*
|
|
|
|
|
|
jobs:
|
|
check-freshness:
|
|
name: Pseudo-Version tool freshness check
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Check freshness
|
|
shell: bash
|
|
run: |
|
|
bazel run //bazel/ci:pseudo_version_tool_freshness
|