Skip to content

Commit 8b5418e

Browse files
authored
chore(ci): bump actions (#632)
Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
1 parent 848b933 commit 8b5418e

10 files changed

Lines changed: 22 additions & 23 deletions

File tree

.github/workflows/codeql.yml

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

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
31+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3232

3333
- name: Set up Go
3434
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0

.github/workflows/docs_deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Documentation
22

33
on:
44
push:
5-
tags: ['v*.*.*']
5+
tags: ["v*.*.*"]
66
workflow_dispatch:
77

88
# Limit to a single workflow
@@ -24,7 +24,7 @@ jobs:
2424
run:
2525
working-directory: ./docs
2626
steps:
27-
- uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017
27+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2828
with:
2929
sparse-checkout: |
3030
docs
@@ -35,7 +35,7 @@ jobs:
3535
# Install Syft
3636
wget --no-verbose https://raw.githubusercontent.com/anchore/syft/main/install.sh -O - | sh -s -- -b /usr/local/bin
3737
38-
- uses: actions/setup-node@c2ac33f2c62f978d6c944d9648125a294e56dc0b
38+
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
3939
with:
4040
node-version: 18
4141

@@ -66,7 +66,7 @@ jobs:
6666
format: spdx-json
6767
upload-artifact: false
6868
output-file: docs/reports/sbom.spdx.json
69-
69+
7070
# Upload artifacts so they are shared with the chainloop job
7171
- uses: actions/upload-artifact@ef09cdac3e2d3e60d8ccadda691f4f1cec5035cb
7272
with:
@@ -89,4 +89,4 @@ jobs:
8989
signing_key_password: ${{ secrets.COSIGN_PASSWORD }}
9090
with:
9191
attestation_name: "docs"
92-
chainloop_labs_branch: 7f4de29435dc009326587051f507d2cd8c77d28b
92+
chainloop_labs_branch: 7f4de29435dc009326587051f507d2cd8c77d28b

.github/workflows/docs_test.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Documentation Build and Test
22
on:
33
pull_request:
4-
paths: ['docs/**']
4+
paths: ["docs/**"]
55
push:
6-
branches: ['main']
7-
paths: ['docs/**']
6+
branches: ["main"]
7+
paths: ["docs/**"]
88
jobs:
99
docs_build_and_test:
1010
name: Documentation Build and Test
@@ -13,14 +13,13 @@ jobs:
1313
run:
1414
working-directory: ./docs
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1717
with:
1818
sparse-checkout: |
1919
docs
2020
sparse-checkout-cone-mode: false
21-
- uses: actions/setup-node@v3
21+
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
2222
with:
2323
node-version: 18
2424
- name: yarn install & build
2525
run: yarn install && yarn build
26-

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
go-version: "1.22.1"
3030

31-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
31+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3232

3333
- name: Lint main module
3434
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
@@ -46,7 +46,7 @@ jobs:
4646
lint-protos:
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
49+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5050
- uses: bufbuild/buf-setup-action@eb60cd0de4f14f1f57cf346916b8cd69a9e7ed0b # v1.26.1
5151
with:
5252
buf_user: ${{ secrets.buf_user }}
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
go-version: "1.22.1"
6868

69-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
69+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
7070

7171
- name: Initialize module
7272
run: |

.github/workflows/package_chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install Helm
2929
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
3030

31-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
31+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3232

3333
- name: Package Chart
3434
run: helm package deployment/chainloop/

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
sudo chmod u+x /usr/local/bin/jq
4444
4545
- name: Checkout
46-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
46+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4747
with:
4848
fetch-depth: 0
4949

.github/workflows/scorecards.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
# To guarantee Maintained check is occasionally updated. See
1111
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
1212
schedule:
13-
- cron: '20 7 * * 2'
13+
- cron: "20 7 * * 2"
1414
push:
1515
branches: ["main"]
1616

@@ -31,12 +31,12 @@ jobs:
3131

3232
steps:
3333
- name: "Checkout code"
34-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
34+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3535
with:
3636
persist-credentials: false
3737

3838
- name: "Run analysis"
39-
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
39+
uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1
4040
with:
4141
results_file: results.sarif
4242
results_format: sarif

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- controlplane
2525
- artifact-cas
2626
steps:
27-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
27+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2828
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
2929
with:
3030
go-version: "1.22.1"

docs/docs/getting-started/attestation-crafting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
259259
# highlight-end
260260
- name: Checkout
261-
uses: actions/checkout@v3
261+
uses: actions/checkout@v4
262262
with:
263263
fetch-depth: 0
264264

docs/examples/ci-workflows/github.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
3131
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
fetch-depth: 0
3636

0 commit comments

Comments
 (0)