mirror of https://github.com/mpv-player/mpv
github/workflows: update actions package versions
This commit is contained in:
parent
19a6b84915
commit
7b67b1ddd3
|
@ -27,13 +27,13 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
target: [i686-w64-mingw32, x86_64-w64-mingw32]
|
target: [i686-w64-mingw32, x86_64-w64-mingw32]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Get time
|
- name: Get time
|
||||||
id: get_time
|
id: get_time
|
||||||
run: echo "timestamp=`date +%s%N`" >> $GITHUB_OUTPUT
|
run: echo "timestamp=`date +%s%N`" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ env.CCACHE_DIR }}
|
path: ${{ env.CCACHE_DIR }}
|
||||||
key: ${{ matrix.target }}-${{ steps.get_time.outputs.timestamp }}
|
key: ${{ matrix.target }}-${{ steps.get_time.outputs.timestamp }}
|
||||||
|
@ -88,7 +88,7 @@ jobs:
|
||||||
- "macos-12"
|
- "macos-12"
|
||||||
- "macos-13"
|
- "macos-13"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Remove stray upstream python binary symlinks under /usr/local
|
- name: Remove stray upstream python binary symlinks under /usr/local
|
||||||
run: |
|
run: |
|
||||||
|
@ -143,7 +143,7 @@ jobs:
|
||||||
cxx: "clang++",
|
cxx: "clang++",
|
||||||
}
|
}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
@ -174,7 +174,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
|
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
|
||||||
timeout-minutes: 30 # avoid any weirdness with the VM
|
timeout-minutes: 30 # avoid any weirdness with the VM
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Test in FreeBSD VM
|
- name: Test in FreeBSD VM
|
||||||
uses: cross-platform-actions/action@v0.19.1
|
uses: cross-platform-actions/action@v0.19.1
|
||||||
with:
|
with:
|
||||||
|
@ -237,7 +237,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git config --global core.autocrlf false
|
git config --global core.autocrlf false
|
||||||
git config --global core.eol lf
|
git config --global core.eol lf
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: msys2/setup-msys2@v2
|
- uses: msys2/setup-msys2@v2
|
||||||
with:
|
with:
|
||||||
msystem: ${{ matrix.sys }}
|
msystem: ${{ matrix.sys }}
|
||||||
|
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
|
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/github-script@v6
|
- uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const { owner, repo } = context.repo;
|
const { owner, repo } = context.repo;
|
||||||
|
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
check-docs:
|
check-docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Docs
|
- name: Docs
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install python3-docutils
|
sudo apt-get install python3-docutils
|
||||||
|
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
commit-msg:
|
commit-msg:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 50
|
fetch-depth: 50
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue