diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index 57b2fa0..b1df890 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -29,7 +29,7 @@ jobs: steps: # Step 1: Check out the repository code - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Step 2: Install pnpm package manager - name: Install pnpm @@ -39,7 +39,7 @@ jobs: # Step 3: Set up Node.js - name: Setup Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: '20' cache: 'pnpm' diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 0a7b547..82b9f1c 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -21,11 +21,11 @@ jobs: steps: # Step 1: Check out the repository code - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Step 2: Label the PR based on changed files - name: Label PR - uses: actions/labeler@v6 + uses: actions/labeler@v7 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: .github/labeler.yml diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 0d4b847..8771750 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -35,11 +35,11 @@ jobs: steps: # Step 1: Check out the repository code - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Step 2: Set up Python 3.11 - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.11' cache: 'pip'