Add exact version number to action.yml on release (#4733)

* Add exact version number to action.yml on release

Signed-off-by: Zack Koppert <zkoppert@github.com>

* remove trailing whitespace

---------

Signed-off-by: Zack Koppert <zkoppert@github.com>
This commit is contained in:
Zack Koppert 2023-10-14 21:40:57 -07:00 committed by GitHub
parent 4789dbb291
commit a911653a57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,6 +97,28 @@ jobs:
# Full git history is needed to get a proper list of commits and tags # Full git history is needed to get a proper list of commits and tags
fetch-depth: 0 fetch-depth: 0
- name: Update action.yml release version number
uses: fjogeleit/yaml-update-action@main
with:
valueFile: 'action.yaml'
propertyPath: 'runs.image'
value: docker://ghcr.io/super-linter/super-linter:${{ env.RELEASE_VERSION }}
commitChange: true
message: update action.yml version pointer
branch: main
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update slim/action.yml release version number
uses: fjogeleit/yaml-update-action@main
with:
valueFile: 'slim/action.yaml'
propertyPath: 'runs.image'
value: docker://ghcr.io/super-linter/super-linter:slim-${{ env.RELEASE_VERSION }}
commitChange: true
message: update slim/action.yml version pointer
branch: main
token: ${{ secrets.GITHUB_TOKEN }}
# We use ^{} to recursively deference the tag to get the commit the tag is pointing at. # We use ^{} to recursively deference the tag to get the commit the tag is pointing at.
# Then, we use that reference to create new tags, so that the new tags point to the commit # Then, we use that reference to create new tags, so that the new tags point to the commit
# the original tag was pointing to, and not to the original tag. # the original tag was pointing to, and not to the original tag.