ci: Update actions/checkout to v4 in workflow files

This commit is contained in:
DongjaJ
2025-04-17 22:57:18 +09:00
parent 696cdc3b45
commit 2e18053e02
4 changed files with 5 additions and 7 deletions

View File

@ -14,7 +14,7 @@ jobs:
steps: steps:
- id: checkout - id: checkout
uses: actions/checkout@v2 uses: actions/checkout@v4
- id: dockerx - id: dockerx
name: Setup Docker Buildx name: Setup Docker Buildx

View File

@ -15,7 +15,7 @@ jobs:
steps: steps:
- id: checkout - id: checkout
uses: actions/checkout@v2 uses: actions/checkout@v4
- id: dockerx - id: dockerx
name: Setup Docker Buildx name: Setup Docker Buildx
@ -41,7 +41,6 @@ jobs:
docker cp test_container:/app/coverage.xml coverage.xml docker cp test_container:/app/coverage.xml coverage.xml
docker rm test_container docker rm test_container
- name: Validate coverage report - name: Validate coverage report
run: | run: |
if [ ! -f coverage.xml ]; then if [ ! -f coverage.xml ]; then

View File

@ -11,7 +11,7 @@ jobs:
name: PR-Agent E2E GitHub App Test name: PR-Agent E2E GitHub App Test
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Setup Docker Buildx - name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
@ -32,14 +32,13 @@ jobs:
- id: test1 - id: test1
name: E2E test github app name: E2E test github app
run: | run: |
docker run -e GITHUB.USER_TOKEN=${{ secrets.TOKEN_GITHUB }} --rm codiumai/pr-agent:test pytest -v tests/e2e_tests/test_github_app.py docker run -e GITHUB.USER_TOKEN=${{ secrets.TOKEN_GITHUB }} --rm codiumai/pr-agent:test pytest -v tests/e2e_tests/test_github_app.py
- id: test2 - id: test2
name: E2E gitlab webhook name: E2E gitlab webhook
run: | run: |
docker run -e gitlab.PERSONAL_ACCESS_TOKEN=${{ secrets.TOKEN_GITLAB }} --rm codiumai/pr-agent:test pytest -v tests/e2e_tests/test_gitlab_webhook.py docker run -e gitlab.PERSONAL_ACCESS_TOKEN=${{ secrets.TOKEN_GITLAB }} --rm codiumai/pr-agent:test pytest -v tests/e2e_tests/test_gitlab_webhook.py
- id: test3 - id: test3
name: E2E bitbucket app name: E2E bitbucket app
run: | run: |

View File

@ -11,7 +11,7 @@ jobs:
pre-commit: pre-commit:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
# SEE https://github.com/pre-commit/action # SEE https://github.com/pre-commit/action
- uses: pre-commit/action@v3.0.1 - uses: pre-commit/action@v3.0.1