Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-compatibility-7.4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: PHP Setup
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-compatibility-8.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: PHP Setup
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-compatibility-8.2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: PHP Setup
uses: shivammathur/setup-php@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
container: kanboard/tests:latest
steps:
- name: Checkout Kanboard repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: kanboard/kanboard
- name: Checkout Plugin repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: plugins/WysiwygMDEditor
- name: Install dependencies
Expand All @@ -44,11 +44,11 @@ jobs:
--health-retries 5
steps:
- name: Checkout Kanboard repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: kanboard/kanboard
- name: Checkout Plugin repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: plugins/WysiwygMDEditor
- name: Install dependencies
Expand Down Expand Up @@ -76,11 +76,11 @@ jobs:
--health-retries 5
steps:
- name: Checkout Kanboard repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: kanboard/kanboard
- name: Checkout Plugin repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: plugins/WysiwygMDEditor
- name: Install dependencies
Expand Down
Loading