Skip to content

Commit 588022b

Browse files
committed
Bump github actions versions
1 parent dcf66d5 commit 588022b

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
container:
6868
image: ${{ needs.build-docker.outputs.image_name }}
6969
steps:
70-
- uses: actions/checkout@v2
70+
- uses: actions/checkout@v4
7171
- name: Build docs
7272
run: make docs
7373

@@ -79,7 +79,7 @@ jobs:
7979
container:
8080
image: ${{ needs.build-docker.outputs.image_name }}
8181
steps:
82-
- uses: actions/checkout@v2
82+
- uses: actions/checkout@v4
8383
# For some reason, the checkout is done by a different user
8484
# than that deploying to Github (root, possibly due to Docker).
8585
# So we need to set the repository as a safe directory.
@@ -104,7 +104,7 @@ jobs:
104104
container:
105105
image: ${{ needs.build-docker.outputs.image_name }}
106106
steps:
107-
- uses: actions/checkout@v2
107+
- uses: actions/checkout@v4
108108
- name: Run pytest
109109
run: pytest
110110

@@ -119,7 +119,7 @@ jobs:
119119
container:
120120
image: ${{ needs.build-docker.outputs.image_name }}
121121
steps:
122-
- uses: actions/checkout@v2
122+
- uses: actions/checkout@v4
123123
with:
124124
submodules: 'recursive'
125125
- name: Hash Verilator prerequisites
@@ -131,7 +131,7 @@ jobs:
131131
flags: --recursive
132132
- name: Set up cache for Verilator build
133133
id: verilator-cache
134-
uses: actions/cache@v3
134+
uses: actions/cache@v4
135135
with:
136136
path: target/snitch_cluster/bin
137137
key: verilator-${{ steps.verilator-hash.outputs.hash }}

.github/workflows/gitlab-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
github.repository == 'pulp-platform/snitch_cluster'
1717
steps:
1818
- name: Check Gitlab CI
19-
uses: pulp-platform/pulp-actions/gitlab-ci@v2.1.0
19+
uses: pulp-platform/pulp-actions/gitlab-ci@v2.4.3
2020
with:
2121
domain: iis-git.ee.ethz.ch
2222
repo: github-mirror/snitch_cluster

.github/workflows/lint.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
github.event_name != 'pull_request' ||
1919
github.event.pull_request.head.repo.full_name != github.repository
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- uses: chipsalliance/verible-linter-action@main
2323
with:
2424
paths: |
@@ -53,7 +53,7 @@ jobs:
5353
github.event.pull_request.head.repo.full_name != github.repository
5454
steps:
5555
- name: Check License
56-
uses: pulp-platform/pulp-actions/lint-license@v2.1.0
56+
uses: pulp-platform/pulp-actions/lint-license@v2.4.3
5757
with:
5858
patches: 0001-Allow-hash-comments-in-assembly.patch
5959
# We cover ETH Zurich and lowRISC licenses and Apache 2.0
@@ -81,7 +81,7 @@ jobs:
8181
github.event_name != 'pull_request' ||
8282
github.event.pull_request.head.repo.full_name != github.repository
8383
steps:
84-
- uses: actions/checkout@v3
84+
- uses: actions/checkout@v4
8585
- name: yaml-lint
8686
uses: ibiqlik/action-yamllint@v3
8787
with:
@@ -98,9 +98,9 @@ jobs:
9898
name: Lint Python Sources
9999
steps:
100100
- name: Check out source repository
101-
uses: actions/checkout@v3
101+
uses: actions/checkout@v4
102102
- name: Set up Python environment
103-
uses: actions/setup-python@v4
103+
uses: actions/setup-python@v5
104104
with:
105105
python-version: "3.11"
106106
- name: flake8 Lint
@@ -120,7 +120,7 @@ jobs:
120120
github.event_name != 'pull_request' ||
121121
github.event.pull_request.head.repo.full_name != github.repository
122122
steps:
123-
- uses: actions/checkout@v3
124-
- uses: DoozyX/clang-format-lint-action@v0.18.1
123+
- uses: actions/checkout@v4
124+
- uses: DoozyX/clang-format-lint-action@v0.18.2
125125
with:
126126
clangFormatVersion: 10

0 commit comments

Comments
 (0)