Skip to content

Commit 11d7b00

Browse files
authored
chore: update github actions week 30 (#1684)
## Type of Work - [x] Patch: X.Y.**Z+1**. **NEGLIGIBLE** visible changes, does not change input or output - OR changes behaviour. Use chore:, refactor: etc - [ ] Minor: X.**Y+1**.Z. Minor changes, might ADD new input (YAML), or other **backwards-compatible** changes. Use feat:, fix: - [ ] Major: **X+1**.Y.Z. Major and most likely **BREAKING** changes, wo. backwards compatibility, or removing temporary backwards compatibility functionality. Use ! or BREAKING:. See here (internal): equinor/ecalc-internal#1044 ## Have you remembered and considered? - [ ] IF FEAT: I have remembered to update documentation - [ ] IF FIX OR FEAT: I have remembered to update manual changelog (`docs/drafts/next.draft.md`) - [ ] IF BREAKING: I have remembered to update migration guide (`docs/docs/migration_guides/`) - [ ] IF BREAKING: I have committed with `BREAKING:` in footer or `!` in header - [ ] I have added tests (if not, comment why) - [x] I have used conventional commits syntax (if you squash, make sure that conventional commit is used) - [ ] I have included the Github issue nr in the footer! ## What is this PR all about? Update GitHub Actions. Closes the following PRs: * #1549 (actions/dependency-review-action) * #1674 (astral-sh/setup-uv) * #1678 (actions/setup-node) * #1682 (zizmorcore/zizmor-action)
1 parent 4478834 commit 11d7b00

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ensure-code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Install uv
25-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
25+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
2626
with:
2727
enable-cache: true
2828

.github/workflows/license-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: 'Dependency Review'
2020
id: review
21-
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0
21+
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
2222
with:
2323
allow-licenses: 0BSD, BSD-1-Clause, BSD-2-Clause, BSD-3-Clause, LGPL-2.0-or-later, LGPL-2.1-or-later, LGPL-3.0-only, LGPL-3.0-or-later, MIT, WTFPL, Apache-2.0, MPL-2.0, ISC
2424
# Note that we explicitly allow LGPL-2.x-or-later, since LGPL-2.x (only) is not compatible with LGPL-3.x

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Install uv
32-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
32+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
3333
with:
3434
enable-cache: true
3535

@@ -49,7 +49,7 @@ jobs:
4949
uv run python generate_json_schema.py > ../docs/docs/about/getting_started/yaml/ecalc_json_schema.json
5050
5151
- name: Setup node
52-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
52+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
5353
with:
5454
node-version: 24
5555
cache: npm

.github/workflows/publish-libecalc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
persist-credentials: false
7070

7171
- name: Install uv
72-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
72+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
7373
with:
7474
# NOTE: Disabled caching in the publishing workflow to avoid a cache-poisoning risk.
7575
enable-cache: false

.github/workflows/test-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
persist-credentials: false
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
22+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
2323
with:
2424
enable-cache: true
2525

@@ -39,7 +39,7 @@ jobs:
3939
uv run python generate_json_schema.py > ../docs/docs/about/getting_started/yaml/ecalc_json_schema.json
4040
4141
- name: Setup node
42-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
42+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
4343
with:
4444
node-version: 24
4545
cache: npm

.github/workflows/test-library.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Install uv
25-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
25+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
2626
with:
2727
enable-cache: true
2828
python-version: ${{ matrix.python-version }}
@@ -56,7 +56,7 @@ jobs:
5656
persist-credentials: false
5757

5858
- name: Install uv
59-
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
59+
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
6060
with:
6161
enable-cache: true
6262
python-version: 3.14

.github/workflows/zizmor-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
persist-credentials: false
1818

1919
- name: Run zizmor 🌈
20-
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
20+
uses: zizmorcore/zizmor-action@6599ee8b7a49aef6a770f63d261d214911a7ce02 # v0.6.0
2121
with:
2222
inputs: |
2323
.github/

0 commit comments

Comments
 (0)