File tree Expand file tree Collapse file tree 4 files changed +16
-7
lines changed
Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+ version : 2
4+ updates :
5+ - package-ecosystem : " github-actions" # See documentation for possible values
6+ directory : " /" # Location of package manifests
7+ schedule :
8+ interval : " weekly"
Original file line number Diff line number Diff line change 1111 runs-on : ${{ matrix.os }}
1212 steps :
1313 - name : Checkout repository
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v4
1515
1616 - name : Install dependencies
1717 run : |
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ on: [push, pull_request]
88jobs :
99 Check-CRLF :
1010 name : verify that only LF linefeeds are used
11- runs-on : ubuntu-18.04
11+ runs-on : ubuntu-latest
1212
1313 steps :
1414 - name : Checkout repository contents
15- uses : actions/checkout@v1
15+ uses : actions/checkout@v4
1616
1717 - name : Use action to check for CRLF endings
18- uses : erclu/check-crlf@v1.1.2
18+ uses : erclu/check-crlf@v1.2.0
1919 with : # ignore directories below, space-delimited
2020 exclude :
Original file line number Diff line number Diff line change 1616 # if: github.repository == 'MapServer/mapcache'
1717 steps :
1818 - name : irc push
19- uses : rectalogic/notify-irc@v1
19+ uses : rectalogic/notify-irc@v2
2020 if : github.event_name == 'push'
2121 with :
2222 channel : " #mapcache"
@@ -26,16 +26,17 @@ jobs:
2626 ${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
2727 ${{ join(github.event.commits.*.message) }}
2828 - name : irc pull request
29- uses : rectalogic/notify-irc@v1
29+ uses : rectalogic/notify-irc@v2
3030 if : github.event_name == 'pull_request'
3131 with :
3232 channel : " #mapcache"
3333 server : " irc.libera.chat"
3434 nickname : mapcache-github-notifier
3535 message : |
3636 ${{ github.actor }} opened PR ${{ github.event.pull_request.html_url }}
37+ ${{ github.event.pull_request.title }}
3738 - name : irc tag created
38- uses : rectalogic/notify-irc@v1
39+ uses : rectalogic/notify-irc@v2
3940 if : github.event_name == 'create' && github.event.ref_type == 'tag'
4041 with :
4142 channel : " #mapcache"
You can’t perform that action at this time.
0 commit comments