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
2 changes: 1 addition & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: Setup code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Docker meta
id: meta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup code
uses: actions/checkout@v3
uses: actions/checkout@v4

# https://github.com/actions/cache/blob/master/examples.md#rust---cargo
# https://www.reddit.com/r/learnrust/comments/lexewr/the_difference_in_behaviour_when_running_cargo/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Setup code
uses: actions/checkout@v3
uses: actions/checkout@v4
# Fetch all histories and tags to create release note
with: { fetch-depth: 0 }

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

steps:
- name: Setup code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust toolchain
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Setup code
uses: actions/checkout@v3
uses: actions/checkout@v4

# https://github.com/actions/cache/blob/master/examples.md#rust---cargo
- name: Cache cargo files
Expand Down