cloud-native-toolkit / cloud-native-toolkit/planning
Update actions to use 'latest' container images
- Dominant language
- No language data
- Stars
- 4
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
Should we update the github actions to always use the latest container image. That way when we update an image we don't have to go to all the terraform modules git repos and update the version number in the action there.
For example in the [Terraform-tools-dashboard verify action](https://github.com/ibm-garage-cloud/terraform-tools-dashboard/blob/main/.github/workflows/verify.yaml) instead of this:
```
verify:
if: ${{ !contains( github.event.pull_request.labels.*.name, 'skip ci' ) }}
runs-on: ubuntu-latest
container: quay.io/ibmgaragecloud/cli-tools:v0.10.0-lite
```
It could be something like this
```
verify:
if: ${{ !contains( github.event.pull_request.labels.*.name, 'skip ci' ) }}
runs-on: ubuntu-latest
container: quay.io/ibmgaragecloud/cli-tools-lite:latest
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.