From 7c593e23420100fa914469468a153a5d5d5e4b15 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 16 Sep 2025 22:18:25 +0000 Subject: [PATCH] Update actions/checkout action to v5 --- .gitea/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index abbd6ce..0fba0ab 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: ports: - 5432 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} ref: ${{ github.head_ref }} # Checkout the actual branch, not the result if merged into the base @@ -68,7 +68,7 @@ jobs: if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} - uses: ruby/setup-ruby@v1 @@ -78,7 +78,7 @@ jobs: if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} - uses: ruby/setup-ruby@v1 @@ -90,7 +90,7 @@ jobs: if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.ACTIONS_TOKEN }} ref: ${{ github.head_ref }} @@ -125,7 +125,7 @@ jobs: needs: - unit_tests steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }}