Skip to content

Commit fccf9c1

Browse files
ci: bump workflow deps
In /.github/workflows: - styfle/cancel-workflow-action: 0.11.0 to 0.12.1 - actions/checkout: v3 to v4 - actions/cache: v3 to v4 - actions/upload-artifact: v3 to v4 - actions/download-artifact: v3 to v4 Signed-off-by: dependabot[bot] <[email protected]>
1 parent 275688a commit fccf9c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/emscripten.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Cancel previous runs
14-
uses: styfle/cancel-workflow-action@0.11.0
14+
uses: styfle/cancel-workflow-action@0.12.1
1515
with:
1616
access_token: ${{ github.token }}
1717
all_but_latest: true
1818

1919
- name: Checkout Base Repo
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Prepare Submodules
2323
run: |
@@ -38,7 +38,7 @@ jobs:
3838
find . -exec touch -d 1971-01-01T00:00:00 '{}' +
3939
4040
- name: Retrieve Cached Built Dependencies
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
id: cache
4343
with:
4444
key: ${{ steps.cache_config.outputs.key }}
@@ -66,7 +66,7 @@ jobs:
6666
docker run --rm --env LC_ALL=C.UTF-8 -v "${PWD}":/code -v "/tmp/emcc_lto:/emsdk/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto" libass/jso:latest
6767
6868
- name: Upload Nightly Build
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master'
7171
with:
7272
name: js
@@ -79,15 +79,15 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Checkout
82-
uses: actions/checkout@v3
82+
uses: actions/checkout@v4
8383
with:
8484
ref: gh-pages
8585

8686
- name: Remove old assets
8787
run: rm -fr assets/js
8888

8989
- name: Download nightly build
90-
uses: actions/download-artifact@v3
90+
uses: actions/download-artifact@v4
9191
with:
9292
name: js
9393
path: assets/js

0 commit comments

Comments
 (0)