summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2024-01-24 18:29:49 +0100
committerDudemanguy <random342@airmail.cc>2024-01-26 03:28:55 +0000
commit7b67b1ddd3e9a27e3427d5a6601e662f9bc35a54 (patch)
treeadac64d97cf25531ade9815c9dbe9065d27372f5
parent19a6b84915cee214ccec929dfad5f9515fdc2911 (diff)
downloadmpv-7b67b1ddd3e9a27e3427d5a6601e662f9bc35a54.tar.bz2
mpv-7b67b1ddd3e9a27e3427d5a6601e662f9bc35a54.tar.xz
github/workflows: update actions package versions
-rw-r--r--.github/workflows/build.yml12
-rw-r--r--.github/workflows/comment.yml2
-rw-r--r--.github/workflows/docs.yml2
-rw-r--r--.github/workflows/lint.yml2
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 22dbe95bb6..e27cec200f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -27,13 +27,13 @@ jobs:
matrix:
target: [i686-w64-mingw32, x86_64-w64-mingw32]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Get time
id: get_time
run: echo "timestamp=`date +%s%N`" >> $GITHUB_OUTPUT
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ matrix.target }}-${{ steps.get_time.outputs.timestamp }}
@@ -88,7 +88,7 @@ jobs:
- "macos-12"
- "macos-13"
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Remove stray upstream python binary symlinks under /usr/local
run: |
@@ -143,7 +143,7 @@ jobs:
cxx: "clang++",
}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install dependencies
run: |
@@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
timeout-minutes: 30 # avoid any weirdness with the VM
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Test in FreeBSD VM
uses: cross-platform-actions/action@v0.19.1
with:
@@ -237,7 +237,7 @@ jobs:
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.sys }}
diff --git a/.github/workflows/comment.yml b/.github/workflows/comment.yml
index 7f9603a753..a837237372 100644
--- a/.github/workflows/comment.yml
+++ b/.github/workflows/comment.yml
@@ -10,7 +10,7 @@ jobs:
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- - uses: actions/github-script@v6
+ - uses: actions/github-script@v7
with:
script: |
const { owner, repo } = context.repo;
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index d1fcb5c7da..5c2317b8c1 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -17,7 +17,7 @@ jobs:
check-docs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Docs
run: |
sudo apt-get install python3-docutils
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 939255e530..4a881c26aa 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -13,7 +13,7 @@ jobs:
commit-msg:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 50