Skip to content

Commit

Permalink
Update github actions to their latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Oct 31, 2023
1 parent 24bcd1f commit 6c881fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
- uses: actions/stale@v8
with:
stale-issue-label: stale
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
PYAV_LIBRARY: ffmpeg-4.3 # doesn't matter

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout

- name: Python
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
PYAV_LIBRARY: ffmpeg-${{ matrix.config.ffmpeg }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout

- name: Python ${{ matrix.config.python }}
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Conda
shell: bash
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
package-source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.8
Expand Down Expand Up @@ -221,13 +221,13 @@ jobs:
- os: windows-latest
arch: AMD64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Set up QEMU
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Install packages
if: matrix.os == 'macos-latest'
run: |
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
runs-on: ubuntu-latest
needs: [package-source, package-wheel]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: dist
Expand Down

0 comments on commit 6c881fc

Please sign in to comment.