Skip to content

Commit 7df34fe

Browse files
committed
Enable dependabot, remove deprecated GH actions code
1 parent 12fb2df commit 7df34fe

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Get composer cache directory
4747
id: composercache
48-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
48+
run: "echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT"
4949

5050
- name: Cache dependencies
5151
uses: actions/cache@v2

.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Get composer cache directory
3636
id: composercache
37-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
37+
run: "echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT"
3838

3939
- name: Cache dependencies
4040
uses: actions/cache@v2

0 commit comments

Comments
 (0)