Skip to content

Commit 8a1a40c

Browse files
committed
update workflows
1 parent 35e67f3 commit 8a1a40c

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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"

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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: |

.github/workflows/check-crlf.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ on: [push, pull_request]
88
jobs:
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:

.github/workflows/irc_notify.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
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"

0 commit comments

Comments
 (0)