rojopolis / spellcheck-github-actions

Spell check action
MIT License
132 stars 38 forks source link

Keep the Github Actions updated #42

Closed edumco closed 3 years ago

edumco commented 3 years ago

Adds dependabot checks to the Github actions

jonasbn commented 3 years ago

Hi @edumco

What is the difference to the docker package-ecosystem ?

edumco commented 3 years ago

The 'docker' ecosystem updates the versions of docker images like in:

FROM python:3.9.4-slim

The actions updates the version of Github actions used in CI like in:

    - uses: actions/checkout@master
    - uses: rojopolis/spellcheck-github-actions@0.13.0

After the @ comes the version. Here you are using the checkout action in version master (it will download master and build) and spellcheck version 0.13.0 (it will download the git tag)

jonasbn commented 3 years ago

Hi @edumco

Thanks for the explanation