Skip to content

Commit 9bed2ae

Browse files
committed
Enable dependabot, remove deprecated GH actions code
1 parent 06d0e49 commit 9bed2ae

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Get composer cache directory
4343
id: composercache
44-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
44+
run: "echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT"
4545

4646
- name: Cache dependencies
4747
uses: actions/cache@v2

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

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

3737
- name: Cache dependencies
3838
uses: actions/cache@v2

0 commit comments

Comments
 (0)