mirror of
https://github.com/gitattributes/gitattributes.git
synced 2025-01-22 16:28:24 -05:00
985783cfdd
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
303 B
YAML
17 lines
303 B
YAML
name: license
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 1 1 *'
|
|
|
|
jobs:
|
|
license:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: FantasticFiasco/action-update-license-year@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|