mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
a4c6896660
Bumps [actions/setup-node](https://github.com/actions/setup-node) from v2.1.4 to v2.1.5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.1.4...46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
723 B
YAML
28 lines
723 B
YAML
name: Bump version
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
default: '7.x.x'
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: '14'
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Run bump version
|
|
uses: ./actions/bump-version
|
|
with:
|
|
token: ${{secrets.GH_BOT_ACCESS_TOKEN}}
|
|
metricsWriteAPIKey: ${{secrets.GRAFANA_MISC_STATS_API_KEY}}
|