Skip to content

Commit a8f5656

Browse files
committed
Updates 2022-04-24
1 parent 6a65735 commit a8f5656

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: ⤵️ Check out code from GitHub
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- name: 🏗 Initialize CodeQL
1717
uses: github/codeql-action/init@v1
1818
- name: 🚀 Perform CodeQL Analysis

.github/workflows/labels.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ on:
66
- main
77
paths:
88
- .github/labels.yml
9+
- .github/workflows/labels.yml
10+
schedule:
11+
- cron: "0 3 * * *"
912

1013
jobs:
1114
labels:
1215
name: ♻️ Sync labels
1316
runs-on: ubuntu-latest
1417
steps:
1518
- name: ⤵️ Check out code from GitHub
16-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
1720
- name: 🚀 Run Label Syncer
1821
uses: micnncim/action-label-syncer@v1.3.0
1922
env:

.github/workflows/phpcs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CI"
1+
name: "php_codesniffer"
22

33
on:
44
push:
@@ -16,7 +16,7 @@ jobs:
1616
phpcs:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0 # important!
2222

@@ -25,7 +25,7 @@ jobs:
2525
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
2626
php phpcs.phar --version
2727
28-
- uses: Novusvetus/action-php_codesniffer@1.2.0
28+
- uses: Novusvetus/action-php_codesniffer@1.2.3
2929
with:
3030
files: "**.php"
3131
scan_all: true

.github/workflows/phpinsights.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CI"
1+
name: "phpinsights"
22

33
on:
44
push:
@@ -14,7 +14,7 @@ jobs:
1414
phpinsights:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0 # important!
2020

@@ -25,7 +25,7 @@ jobs:
2525
php composer.phar clearcache -q
2626
php ~/.composer/vendor/bin/phpinsights --version
2727
28-
- uses: Novusvetus/action-phpinsights@1.1.0
28+
- uses: Novusvetus/action-phpinsights@1.1.3
2929
with:
3030
files: "**.php"
3131
scan_all: true

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: 🚀 Run stale
14-
uses: actions/stale@v4
14+
uses: actions/stale@v5
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
1717
days-before-stale: 180

0 commit comments

Comments
 (0)