|
29 | 29 | run: |
|
30 | 30 | git config --global core.autocrlf false
|
31 | 31 | git config --global core.eol lf
|
32 |
| - - uses: actions/checkout@v3 |
| 32 | + - uses: actions/checkout@v4 |
33 | 33 | - name: Set up Python ${{ matrix.python-version }}
|
34 |
| - uses: actions/setup-python@v4 |
| 34 | + uses: actions/setup-python@v5 |
35 | 35 | with:
|
36 | 36 | python-version: ${{ matrix.python-version }}
|
37 | 37 | - name: Install dependencies (Windows)
|
@@ -69,10 +69,10 @@ jobs:
|
69 | 69 | runs-on: ${{ matrix.os }}
|
70 | 70 | steps:
|
71 | 71 | - name: Set up Python ${{ matrix.python-version }}
|
72 |
| - uses: actions/setup-python@v4 |
| 72 | + uses: actions/setup-python@v5 |
73 | 73 | with:
|
74 | 74 | python-version: ${{ matrix.python-version }}
|
75 |
| - - uses: actions/checkout@v3 |
| 75 | + - uses: actions/checkout@v4 |
76 | 76 | - name: "Install pip and the btest package"
|
77 | 77 | run: |
|
78 | 78 | python3 -m pip install --upgrade pip
|
|
92 | 92 | needs: [Run-BTest, Test-SetupPY]
|
93 | 93 | if: github.repository == 'zeek/btest' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
94 | 94 | steps:
|
95 |
| - - uses: actions/checkout@v3 |
| 95 | + - uses: actions/checkout@v4 |
96 | 96 | - name: Check release version
|
97 | 97 | # This fails e.g. if VERSION contains a dev commits suffix,
|
98 | 98 | # since we don't want to push these to PyPI. Accepts two-
|
|
0 commit comments