From 45c6db63fcd90ae6c048f48c37137df87eb4c794 Mon Sep 17 00:00:00 2001 From: guo Date: Fri, 1 Apr 2022 12:05:39 +0800 Subject: [PATCH] [ci] update action use python@v3 (#5756) --- .github/workflows/action.yml | 4 ++-- .github/workflows/action_tools.yml | 2 +- .github/workflows/action_utest.yml | 2 +- .github/workflows/file_check.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 5b6fed8a79..778989e5b7 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -169,9 +169,9 @@ jobs: - {RTT_BSP: "raspberry-pi/raspi4-64", RTT_TOOL_CHAIN: "sourcery-aarch64"} - {RTT_BSP: "rockchip/rk3568", RTT_TOOL_CHAIN: "sourcery-aarch64"} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@master + uses: actions/setup-python@v3 with: python-version: 3.8 diff --git a/.github/workflows/action_tools.yml b/.github/workflows/action_tools.yml index 7c59ae7b37..098f7ea482 100644 --- a/.github/workflows/action_tools.yml +++ b/.github/workflows/action_tools.yml @@ -36,7 +36,7 @@ jobs: env: TEST_BSP_ROOT: bsp/stm32/stm32f407-atk-explorer steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install Tools shell: bash diff --git a/.github/workflows/action_utest.yml b/.github/workflows/action_utest.yml index cb7707059b..94f4245d4d 100644 --- a/.github/workflows/action_utest.yml +++ b/.github/workflows/action_utest.yml @@ -43,7 +43,7 @@ jobs: TEST_CONFIG_FILE: ${{ matrix.legs.CONFIG_FILE }} TEST_SD_FILE: ${{ matrix.legs.SD_FILE }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install Tools shell: bash diff --git a/.github/workflows/file_check.yml b/.github/workflows/file_check.yml index f1f1994af8..a7c706d9c9 100644 --- a/.github/workflows/file_check.yml +++ b/.github/workflows/file_check.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest name: Scan code format and license steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@master + uses: actions/setup-python@v3 with: python-version: 3.8 -- GitLab