From 385d38d56669bfec7d3f012116d8c387e079be49 Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Tue, 13 Aug 2024 07:16:48 -0700 Subject: [PATCH] ci: fix user id shenanigans --- .github/workflows/build_all_targets.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_all_targets.yml b/.github/workflows/build_all_targets.yml index 386e7e479b..7be1f10cdc 100644 --- a/.github/workflows/build_all_targets.yml +++ b/.github/workflows/build_all_targets.yml @@ -10,12 +10,12 @@ jobs: runs-on: [runs-on,runner=8cpu-linux-x64,"run-id=${{ github.run_id }}"] container: image: px4io/px4-dev-base-focal:2021-09-08 - options: --user 1000 + options: --user 1001 outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} timestamp: ${{ steps.set-timestamp.outputs.timestamp }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.ACCESS_TOKEN }} - id: set-matrix @@ -33,7 +33,7 @@ jobs: image: ${{ matrix.container }} options: --user 1001 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.ACCESS_TOKEN }}