Skip to content

Commit

Permalink
cicd: Upgraded actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Mar 18, 2024
1 parent 66e25f8 commit 2fdb8a5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: docs
path: docs

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: plugins

- name: Download docs
uses: actions/download-artifact@v4
with:
name: docs
path: docs

- name: Download jlink
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: jlink
path: out/jreleaser/assemble/riot-standalone/jlink
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
fetch-depth: 0

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: plugins

- name: Download jlink
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: jlink
path: out/jreleaser/assemble/riot-standalone/jlink
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/step-jlink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,6 @@ jobs:
- name: Dependencies
run: |
ls -l plugins/riot/build/dependencies/flat
- name: Upload docs
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: docs
path: |
docs/guide/build/guide/
docs/LICENSE
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand All @@ -92,6 +83,15 @@ jobs:
plugins/riot/build/dependencies/
plugins/riot/build/distributions/
plugins/LICENSE
- name: Upload docs
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: docs
path: |
docs/guide/build/guide/
docs/LICENSE
- name: Stop Gradle daemon
shell: bash
Expand Down

0 comments on commit 2fdb8a5

Please sign in to comment.