Skip to content

Commit

Permalink
Upgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kimo-k committed Oct 18, 2024
1 parent 76c31ab commit af8f1a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ jobs:
npm install
npm run release
npm run build-report
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: simple-example-build-report
path: examples/simple/target/build-report.html
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: todomvc-example-build-report
path: examples/todomvc/target/build-report.html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ jobs:
npm install
npm run release
npm run build-report
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: simple-example-build-report
path: examples/simple/target/build-report.html
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: todomvc-example-build-report
path: examples/todomvc/target/build-report.html
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
# Source: https://github.com/day8/re-frame/blob/master/docs/src/ns_to_markdown.clj
run: clojure -m ns-to-markdown ../src/re_frame/alpha.cljc > api-re-frame.alpha.md
- name: Upload re-frame.core Documentation Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: api-re-frame.core.md
path: docs/api-re-frame.core.md
- name: Upload re-frame.alpha Documentation Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: api-re-frame.alpha.md
path: docs/api-re-frame.alpha.md
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: |
tar Jcf re-frame-docs-app.tar.xz js
- name: Upload re-frame-docs App Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: re-frame-docs-app
path: docs/re-frame-docs-app.tar.xz
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Create MkDocs Artifact
run: tar zcf mkdocs.tar.gz site/
- name: Upload MkDocs Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: mkdocs
path: mkdocs.tar.gz
Expand Down

0 comments on commit af8f1a4

Please sign in to comment.