Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Toit
shell: bash
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
needs: [build]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
needs: [build]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Git version
id: version
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
needs: [build]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/download-artifact@v4
with:
Expand All @@ -354,17 +354,17 @@ jobs:
update_public:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout release-repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: toitware/artemis-releases
path: release-repo
token: ${{ secrets.LEON_ARTEMIS_RELEASE_PAT }}

- name: Checkout docs-repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: toitware/web-docs
path: docs-repo
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
runs-on: ubuntu-latest
needs: [package-windows, package-linux, package-macos, update_public]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Download Linux artifacts
uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
# We have a test that wants to tag a specific commit.
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
# We have a test that wants to tag a specific commit.
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
run: |
rm -rf ${{ github.workspace }}/*

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add local bin to PATH
run: |
Expand Down
Loading