From 93282b0d4210bd213375328a8a2a8e516af14d4e Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Fri, 20 Oct 2023 09:00:29 +1100 Subject: [PATCH] use actions/checkout@v4 --- .github/workflows/drupal-example.yaml | 4 ++-- .github/workflows/merge-branch.yaml | 4 ++-- renovate.json | 4 ++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/drupal-example.yaml b/.github/workflows/drupal-example.yaml index e7e8ad3..5065072 100644 --- a/.github/workflows/drupal-example.yaml +++ b/.github/workflows/drupal-example.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + uses: actions/checkout@v4 with: fetch-depth: "0" - name: install Lando @@ -64,4 +64,4 @@ jobs: # - name: Show Lando logs # continue-on-error: true # run: | - # docker-compose -p drupal9base logs \ No newline at end of file + # docker-compose -p drupal9base logs diff --git a/.github/workflows/merge-branch.yaml b/.github/workflows/merge-branch.yaml index 4a313d1..bec4669 100644 --- a/.github/workflows/merge-branch.yaml +++ b/.github/workflows/merge-branch.yaml @@ -7,7 +7,7 @@ jobs: sync-branch: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - name: Merge main -> php81 uses: devmasx/merge-branch@master @@ -15,4 +15,4 @@ jobs: type: now from_branch: main target_branch: php81 - github_token: ${{ github.token }} \ No newline at end of file + github_token: ${{ github.token }} diff --git a/renovate.json b/renovate.json index dd27480..935240a 100644 --- a/renovate.json +++ b/renovate.json @@ -29,6 +29,10 @@ "drupal/core-project-message" ], "enabled": false + }, + { + "matchManagers": ["github-actions"], + "groupName": "GitHub actions" } ] }