diff --git a/.github/workflows/aws-ecs-deploy-backend.yml b/.github/workflows/aws-ecs-deploy-backend.yml index eade86a66..98e329b99 100644 --- a/.github/workflows/aws-ecs-deploy-backend.yml +++ b/.github/workflows/aws-ecs-deploy-backend.yml @@ -29,7 +29,7 @@ jobs: - name: Debug Action uses: hmarr/debug-action@v3.0.0 - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.inputs.ref }} - name: Set AWS Env & Image Tag per workflow @@ -58,7 +58,7 @@ jobs: needs: [setup_env] steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.inputs.ref }} - name: Configure AWS credentials diff --git a/.github/workflows/aws-ecs-deploy-frontend.yml b/.github/workflows/aws-ecs-deploy-frontend.yml index 196202be6..9cea04007 100644 --- a/.github/workflows/aws-ecs-deploy-frontend.yml +++ b/.github/workflows/aws-ecs-deploy-frontend.yml @@ -29,7 +29,7 @@ jobs: - name: Debug Action uses: hmarr/debug-action@v3.0.0 - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.inputs.ref }} - name: Set AWS Env & Image Tag per workflow @@ -62,7 +62,7 @@ jobs: needs: [setup_env] steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.inputs.ref }} - name: Configure AWS credentials diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index 633ec85d1..95edda09b 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - uses: ./.github/actions/setup-frontend - run: npm run build:ui working-directory: frontend diff --git a/.github/workflows/frontend-checks.yml b/.github/workflows/frontend-checks.yml index 3c2c33d1f..75098168f 100644 --- a/.github/workflows/frontend-checks.yml +++ b/.github/workflows/frontend-checks.yml @@ -18,7 +18,7 @@ jobs: working-directory: frontend steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/setup-frontend - name: Linting diff --git a/.github/workflows/playwright-e2e.yml b/.github/workflows/playwright-e2e.yml index 215f94e45..14bc3ca4e 100644 --- a/.github/workflows/playwright-e2e.yml +++ b/.github/workflows/playwright-e2e.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Create .env file run: | diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 33ebe7afc..ded55894e 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -20,7 +20,7 @@ jobs: --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Python 3.13 Setup uses: actions/setup-python@v6 with: