diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-20 14:21:47 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-20 14:21:47 +0200 |
commit | 71a2d0b4db0c935a5175adbc1579b890e7491d6a (patch) | |
tree | 959f5b924df449061464b1ba6127ebf64a5d8aa7 /.github/workflows/copilot.yml | |
parent | docs/providers-and-models.md (diff) | |
download | gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar.gz gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar.bz2 gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar.lz gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar.xz gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.tar.zst gpt4free-71a2d0b4db0c935a5175adbc1579b890e7491d6a.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/copilot.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml index 6e06f6c7..dd8120a4 100644 --- a/.github/workflows/copilot.yml +++ b/.github/workflows/copilot.yml @@ -6,6 +6,9 @@ on: types: - completed +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE20: true + jobs: review: runs-on: ubuntu-latest @@ -14,9 +17,9 @@ jobs: pull-requests: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Download artifact' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -38,7 +41,7 @@ jobs: - name: 'Unzip artifact' run: unzip pr_number.zip - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.x" cache: 'pip' |