From e8a474dde62a43b3bf6dcd4666acabcd217fbe4d Mon Sep 17 00:00:00 2001 From: Marc Vanbrabant Date: Sat, 25 May 2024 15:03:37 +0200 Subject: [PATCH] Update actions --- .github/workflows/build.yml | 6 +++--- .github/workflows/ci.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 461db9e..ee8b2a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,10 +50,10 @@ jobs: - name: darwin-x86_64 os: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: 'Caching workspace.' id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: build @@ -116,7 +116,7 @@ jobs: # Upload the packaged asset as an artifact. - name: 'Uploading the packaged asset.' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ffmpeg-${{ matrix.name }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc520bb..f766a02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,10 @@ jobs: # Execute the build activities. steps: - name: Checkout the repository. - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup the node ${{ matrix.node-version }} environment. - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }}