From 9a966fa1f6e9d8618aaf47c843c5b827f2e6ce88 Mon Sep 17 00:00:00 2001 From: Shak <88886274+mechakdotdev@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:52:42 +0100 Subject: [PATCH] Bugfix/outdated GitHub actions definition (#3) * Use GitHub Actions to auto rebase development onto main after commit * Use checkout v4 to use node20 instead of deprecated v3 * Secrets not needed as using built-in GitHub Actions authentication --- .github/workflows/rebase-dev.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/rebase-dev.yml b/.github/workflows/rebase-dev.yml index 111983c..19063b4 100644 --- a/.github/workflows/rebase-dev.yml +++ b/.github/workflows/rebase-dev.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -29,5 +29,3 @@ jobs: - name: Push changes run: | git push origin development --force - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}