Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

# Checkout Silicon (note: all checkouts delete the contents of their working directory)
- name: Checkout Silicon
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
cp target/scala-2.13/silicon.jar .

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-and-assemble
path: |
Expand All @@ -85,12 +85,12 @@ jobs:
steps:
# Checkout Silicon (deletes content of working directory)
- name: Checkout Silicon
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

- name: Download artifacts from job test-and-assemble
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: test-and-assemble

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down
Loading