mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 17:53:14 -05:00
8bdd5deb1f
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
#########################
|
|
#########################
|
|
## Version GitHub Tags ##
|
|
#########################
|
|
#########################
|
|
|
|
#
|
|
# Documentation:
|
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
#
|
|
|
|
##########################
|
|
# Name of the action job #
|
|
##########################
|
|
name: Keep GitHub tag versions up-to-date
|
|
|
|
#####################################################
|
|
# Run the job when a release is published or edited #
|
|
#####################################################
|
|
on:
|
|
release:
|
|
types: [published, edited]
|
|
|
|
#################
|
|
# Start the job #
|
|
#################
|
|
jobs:
|
|
actions-tagger:
|
|
runs-on: windows-latest
|
|
steps:
|
|
#############################
|
|
# Check out the latest code #
|
|
#############################
|
|
- uses: actions/checkout@v2.4.0
|
|
|
|
######################
|
|
# Run the tag action #
|
|
######################
|
|
- uses: Actions-R-Us/actions-tagger@v2.0.2
|
|
with:
|
|
publish_latest_tag: true
|
|
env:
|
|
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"
|