Skip to content

Commit 05969cb

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/add-to-project](https://github.com/actions/add-to-project), [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [lando/setup-lando](https://github.com/lando/setup-lando). Updates `actions/add-to-project` from 1.0.0 to 1.0.2 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](actions/add-to-project@v1.0.0...v1.0.2) Updates `actions/checkout` from 2 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v6) Updates `actions/setup-node` from 2 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v2...v6) Updates `lando/setup-lando` from 2 to 3 - [Release notes](https://github.com/lando/setup-lando/releases) - [Changelog](https://github.com/lando/setup-lando/blob/main/CHANGELOG.md) - [Commits](lando/setup-lando@v2...v3) --- updated-dependencies: - dependency-name: actions/add-to-project dependency-version: 1.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: lando/setup-lando dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cfd2d32 commit 05969cb

16 files changed

Lines changed: 43 additions & 43 deletions

.github/workflows/label-add-to-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Add issue/PR to GitHub Project
1414
if: github.event.label.name == 'flag'
15-
uses: actions/add-to-project@v1.0.0
15+
uses: actions/add-to-project@v1.0.2
1616
with:
1717
project-url: https://github.com/orgs/lando/projects/7
1818
github-token: ${{ secrets.SHADOW_COUNCIL_ESCALATOR }}

.github/workflows/pr-basic-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
steps:
2323
# Install deps and cache
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v6
2626
- name: Install node ${{ matrix.node-version }}
27-
uses: actions/setup-node@v2
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: npm
@@ -37,7 +37,7 @@ jobs:
3737
version: dev
3838
sync: false
3939
- name: Setup lando ${{ matrix.lando-version }}
40-
uses: lando/setup-lando@v2
40+
uses: lando/setup-lando@v3
4141
with:
4242
lando-version: ${{ matrix.lando-version }}
4343
config: |

.github/workflows/pr-chrome-headless-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
steps:
2323
# Install deps and cache
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v6
2626
- name: Install node ${{ matrix.node-version }}
27-
uses: actions/setup-node@v2
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: npm
@@ -38,7 +38,7 @@ jobs:
3838
version: dev
3939
sync: false
4040
- name: Setup lando ${{ matrix.lando-version }}
41-
uses: lando/setup-lando@v2
41+
uses: lando/setup-lando@v3
4242
with:
4343
lando-version: ${{ matrix.lando-version }}
4444
config: |

.github/workflows/pr-drupal8-sync-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
steps:
2424
# Install deps and cache
2525
- name: Checkout code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v6
2727
- name: Install node ${{ matrix.node-version }}
28-
uses: actions/setup-node@v2
28+
uses: actions/setup-node@v6
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: npm
@@ -38,7 +38,7 @@ jobs:
3838
version: dev
3939
sync: false
4040
- name: Setup lando ${{ matrix.lando-version }}
41-
uses: lando/setup-lando@v2
41+
uses: lando/setup-lando@v3
4242
with:
4343
lando-version: ${{ matrix.lando-version }}
4444
config: |

.github/workflows/pr-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
steps:
1616
# Install deps and cache
1717
- name: Checkout code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v6
1919
- name: Install node ${{ matrix.node-version }}
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: npm

.github/workflows/pr-mariadb-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
steps:
2929
# Install deps and cache
3030
- name: Checkout code
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v6
3232
- name: Install node ${{ matrix.node-version }}
33-
uses: actions/setup-node@v2
33+
uses: actions/setup-node@v6
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
cache: npm
@@ -44,7 +44,7 @@ jobs:
4444
version: dev
4545
sync: false
4646
- name: Setup lando ${{ matrix.lando-version }}
47-
uses: lando/setup-lando@v2
47+
uses: lando/setup-lando@v3
4848
with:
4949
lando-version: ${{ matrix.lando-version }}
5050
config: |

.github/workflows/pr-memcached-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
steps:
2525
# Install deps and cache
2626
- name: Checkout code
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v6
2828
- name: Install node ${{ matrix.node-version }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
cache: npm
@@ -40,7 +40,7 @@ jobs:
4040
version: dev
4141
sync: false
4242
- name: Setup lando ${{ matrix.lando-version }}
43-
uses: lando/setup-lando@v2
43+
uses: lando/setup-lando@v3
4444
with:
4545
lando-version: ${{ matrix.lando-version }}
4646
config: |

.github/workflows/pr-mongodb-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
steps:
2626
# Install deps and cache
2727
- name: Checkout code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v6
2929
- name: Install node ${{ matrix.node-version }}
30-
uses: actions/setup-node@v2
30+
uses: actions/setup-node@v6
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
cache: npm
@@ -41,7 +41,7 @@ jobs:
4141
version: dev
4242
sync: false
4343
- name: Setup lando ${{ matrix.lando-version }}
44-
uses: lando/setup-lando@v2
44+
uses: lando/setup-lando@v3
4545
with:
4646
lando-version: ${{ matrix.lando-version }}
4747
config: |

.github/workflows/pr-mysql-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
steps:
2727
# Install deps and cache
2828
- name: Checkout code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v6
3030
- name: Install node ${{ matrix.node-version }}
31-
uses: actions/setup-node@v2
31+
uses: actions/setup-node@v6
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434
cache: npm
@@ -42,7 +42,7 @@ jobs:
4242
version: dev
4343
sync: false
4444
- name: Setup lando ${{ matrix.lando-version }}
45-
uses: lando/setup-lando@v2
45+
uses: lando/setup-lando@v3
4646
with:
4747
lando-version: ${{ matrix.lando-version }}
4848
config: |

.github/workflows/pr-php-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
steps:
3131
# Install deps and cache
3232
- name: Checkout code
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v6
3434
- name: Install node ${{ matrix.node-version }}
35-
uses: actions/setup-node@v2
35+
uses: actions/setup-node@v6
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838
cache: npm
@@ -46,7 +46,7 @@ jobs:
4646
version: dev
4747
sync: false
4848
- name: Setup lando ${{ matrix.lando-version }}
49-
uses: lando/setup-lando@v2
49+
uses: lando/setup-lando@v3
5050
with:
5151
lando-version: ${{ matrix.lando-version }}
5252
config: |

0 commit comments

Comments
 (0)