Skip to content

Commit 75e0756

Browse files
authored
chore: Bump actions and pre-commit hook refs (#84)
1 parent e585454 commit 75e0756

File tree

13 files changed

+44
-39
lines changed

13 files changed

+44
-39
lines changed

.github/workflows/build_interu.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Build interu
23

34
on:
@@ -22,11 +23,11 @@ jobs:
2223
runs-on: ${{ inputs.os }}
2324
steps:
2425
- name: Checkout
25-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2627
with:
2728
persist-credentials: false
2829

29-
- uses: dtolnay/rust-toolchain@0e66bd3e6b38ec0ad5312288c83e47c143e6b09e # v1
30+
- uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921
3031
with:
3132
toolchain: ${{ env.RUST_VERSION }}
3233
targets: ${{ inputs.target }}
@@ -43,6 +44,6 @@ jobs:
4344

4445
- name: Upload Artifact
4546
if: inputs.upload
46-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
47+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4748
with:
4849
path: interu-${{ inputs.target }}

.github/workflows/pr_interu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Build interu
23

34
on:

.github/workflows/pr_pre-commit.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ name: pre-commit
44
on:
55
pull_request:
66

7-
87
jobs:
98
pre-commit:
109
runs-on: ubuntu-latest
1110
steps:
12-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
11+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1312
with:
1413
persist-credentials: false
1514
submodules: recursive

.github/workflows/release_interu.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Release interu
23

34
on:
@@ -24,11 +25,11 @@ jobs:
2425
needs: [build]
2526
steps:
2627
- name: Download Artifacts
27-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
28+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2829
with:
2930
path: artifacts
3031

3132
- name: Upload Release Binary
32-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
33+
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090 # v2.4.1
3334
with:
3435
files: artifacts/artifact/*

.github/workflows/smoke-build.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Generate Version List
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
with:
2525
persist-credentials: false
2626

@@ -43,12 +43,12 @@ jobs:
4343
runner:
4444
# Github's ubuntu-latest runners use 24.04. By default Ubicloud's runners use 22.04.
4545
# We therefore explicitly request 24.04 for them as well.
46-
- {name: "ubuntu-latest", arch: "amd64"}
47-
- {name: "ubicloud-standard-8-arm-ubuntu-2404", arch: "arm64"}
46+
- { name: "ubuntu-latest", arch: "amd64" }
47+
- { name: "ubicloud-standard-8-arm-ubuntu-2404", arch: "arm64" }
4848
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
4949
steps:
5050
- name: Checkout Repository
51-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
51+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5252
with:
5353
persist-credentials: false
5454

@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
product-version: ${{ matrix.versions }}
6363
boil-config-file: smoke/boil.toml
64-
boil-version: 0.1.0
64+
boil-version: latest
6565
registry-namespace: stackable
6666
extra-tag-data: pr-321
6767
product-name: smoke
@@ -87,7 +87,7 @@ jobs:
8787
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
8888
steps:
8989
- name: Checkout Repository
90-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
90+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9191
with:
9292
persist-credentials: false
9393

@@ -107,7 +107,7 @@ jobs:
107107
if: failure() || github.run_attempt > 1
108108
steps:
109109
- name: Checkout Repository
110-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
110+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
111111
with:
112112
persist-credentials: false
113113

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default_language_version:
44

55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # 5.0.0
7+
rev: 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c # 6.0.0
88
hooks:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
@@ -13,23 +13,23 @@ repos:
1313
- id: detect-private-key
1414

1515
- repo: https://github.com/adrienverge/yamllint
16-
rev: 81e9f98ffd059efe8aa9c1b1a42e5cce61b640c6 # 1.35.1
16+
rev: 79a6b2b1392eaf49cdd32ac4f14be1a809bbd8f7 # 1.37.1
1717
hooks:
1818
- id: yamllint
1919
args: ["--strict"]
2020

2121
- repo: https://github.com/igorshubovych/markdownlint-cli
22-
rev: 0d9fcb51a54f3b750b911c054b4bd1a590f1b592 # 0.43.0
22+
rev: 192ad822316c3a22fb3d3cc8aa6eafa0b8488360 # 0.45.0
2323
hooks:
2424
- id: markdownlint
2525
- repo: https://github.com/koalaman/shellcheck-precommit
26-
rev: 2491238703a5d3415bb2b7ff11388bf775372f29 # 0.10.0
26+
rev: 99470f5e12208ff0fb17ab81c3c494f7620a1d8d # 0.11.0
2727
hooks:
2828
- id: shellcheck
2929
args: ["--severity=info"]
3030

3131
- repo: https://github.com/rhysd/actionlint
32-
rev: 5db9d9cde2f3deb5035dea3e45f0a9fff2f29448 # 1.7.4
32+
rev: e7d448ef7507c20fc4c88a95d0c448b848cd6127 # 1.7.8
3333
hooks:
3434
- id: actionlint
3535

.yamllint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ rules:
99
min-spaces-from-content: 1 # Needed due to https://github.com/adrienverge/yamllint/issues/443
1010
indentation:
1111
indent-sequences: consistent
12+
braces:
13+
max-spaces-inside: 1
14+
max-spaces-inside-empty: 0

publish-helm-chart/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ inputs:
1717
helm-version:
1818
description: Version of helm
1919
# See https://github.com/helm/helm/releases for latest version
20-
default: v3.18.6
20+
default: v3.19.0
2121
chart-version:
2222
description: The Helm Chart version
2323
required: true
@@ -31,7 +31,7 @@ runs:
3131
using: composite
3232
steps:
3333
- name: Set up Cosign
34-
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1
34+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
3535

3636
- name: Set up Helm
3737
env:
@@ -54,7 +54,7 @@ runs:
5454
helm registry login --username "$CHART_REGISTRY_USERNAME" --password "$CHART_REGISTRY_PASSWORD" "$CHART_REGISTRY_URI"
5555
5656
- name: Log into Container Registry (${{ inputs.chart-registry-uri }}) using Docker
57-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
57+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5858
with:
5959
registry: ${{ inputs.chart-registry-uri }}
6060
username: ${{ inputs.chart-registry-username }}

publish-image-index-manifest/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ runs:
4545
using: composite
4646
steps:
4747
- name: Set up Cosign
48-
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1
48+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
4949

5050
- name: Login to Container Registry (${{ inputs.image-registry-uri }})
51-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
51+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5252
with:
5353
registry: ${{ inputs.image-registry-uri }}
5454
username: ${{ inputs.image-registry-username }}

publish-image/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ runs:
5555
using: composite
5656
steps:
5757
- name: Set up Cosign
58-
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1
58+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
5959

6060
- name: Set up syft
61-
uses: anchore/sbom-action/download-syft@9246b90769f852b3a8921f330c59e0b3f439d6e9 # v0.20.1
61+
uses: anchore/sbom-action/download-syft@8e94d75ddd33f69f691467e42275782e4bfefe84 # v0.20.9
6262

6363
- name: Login to Container Registry (${{ inputs.image-registry-uri }})
64-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
64+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
6565
with:
6666
registry: ${{ inputs.image-registry-uri }}
6767
username: ${{ inputs.image-registry-username }}

0 commit comments

Comments
 (0)