Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
php-version: [7.4, 8.0, 8.1, 8.2]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
needs: [test-nodejs, test-python, test-php]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand All @@ -187,7 +187,7 @@ jobs:
needs: [test-nodejs, test-python, test-php]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Run security audit (Node.js)
run: |
Expand All @@ -211,7 +211,7 @@ jobs:
if: github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Build Node.js package
run: |
Expand All @@ -238,7 +238,7 @@ jobs:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v3
Expand Down