From c8f6a40963b394464ee3902fef171567b100465b Mon Sep 17 00:00:00 2001 From: jindaxiang Date: Tue, 26 Mar 2024 18:57:46 +0800 Subject: [PATCH] chore: update action version --- .github/workflows/build.yml | 8 ++++---- .github/workflows/release_and_deploy.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3d8159..522f1c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,11 +3,11 @@ name: build on: push: branches: - - develop + - dev pull_request: branches: - main - - develop + - dev jobs: build: @@ -18,9 +18,9 @@ jobs: python-version: ["3.12"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/release_and_deploy.yml b/.github/workflows/release_and_deploy.yml index c1ed75f..e3dc20e 100644 --- a/.github/workflows/release_and_deploy.yml +++ b/.github/workflows/release_and_deploy.yml @@ -14,9 +14,9 @@ jobs: python-version: [ "3.12" ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -40,13 +40,13 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: release uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: set up python - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies