diff --git a/.github/workflows/ci-spec.yml b/.github/workflows/ci-spec.yml index fecb9365..e24a3cb5 100644 --- a/.github/workflows/ci-spec.yml +++ b/.github/workflows/ci-spec.yml @@ -36,7 +36,7 @@ jobs: #- name: Run Bikeshed # run: cd document/core && make bikeshed - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: core-rendered path: document/core/_build/html @@ -51,7 +51,7 @@ jobs: - name: Run Bikeshed run: bikeshed spec "document/js-api/index.bs" "document/js-api/index.html" - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: js-api-rendered path: document/js-api/index.html @@ -66,7 +66,7 @@ jobs: - name: Run Bikeshed run: bikeshed spec "document/web-api/index.bs" "document/web-api/index.html" - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: web-api-rendered path: document/web-api/index.html @@ -85,7 +85,7 @@ jobs: - name: Build main spec run: cd document/legacy/exceptions/core && make main - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: legacy-exceptions-core-rendered path: document/legacy/exceptions/core/_build/html @@ -100,7 +100,7 @@ jobs: - name: Run Bikeshed run: bikeshed spec "document/legacy/exceptions/js-api/index.bs" "document/legacy/exceptions/js-api/index.html" - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: legacy-exceptions-js-api-rendered path: document/legacy/exceptions/js-api/index.html @@ -114,27 +114,27 @@ jobs: - name: Create output directory run: mkdir _output && cp document/index.html _output/index.html - name: Download core spec artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: core-rendered path: _output/core - name: Download JS API spec artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: js-api-rendered path: _output/js-api - name: Download Web API spec artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: web-api-rendered path: _output/web-api - name: Download legacy exceptions core spec artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: legacy-exceptions-core-rendered path: _output/legacy/exceptions/core - name: Download legacy exceptions JS API spec artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: legacy-exceptions-js-api-rendered path: _output/legacy/exceptions/js-api