diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index e5fbf4ee..098798b1 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -12,7 +12,7 @@ jobs: # gcc-versions are used to test up to 5 years old gcc-version: [9, 10, 11, 12, 13, 14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: 'Add ubuntu repository and install dependencies' run: .github/tools/install_ubuntu_packages.sh ${{ matrix.gcc-version }} - name: 'Check if gcc was installed correctly' @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest name: checkpatch review steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce940108..0d529b2a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,12 +18,12 @@ jobs: timeout-minutes: 150 name: upstream tests steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name == 'pull_request' }} with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name == 'schedule' }} with: ref: main