Skip to content

Commit 55ece63

Browse files
authored
Merge pull request #39 from seqeralabs/renovate-autodiscover/pin-dependencies
2 parents 5db7124 + 96ef3b8 commit 55ece63

6 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
build:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2525

26-
- uses: actions/setup-python@v5
26+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
2727
with:
2828
python-version: 3.x
2929

3030
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
31-
- uses: actions/cache@v4
31+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
3232
with:
3333
key: mkdocs-material-${{ env.cache_id }}
3434
path: .cache
@@ -40,7 +40,7 @@ jobs:
4040
- run: mkdocs build
4141

4242
- name: Upload artifact
43-
uses: actions/upload-pages-artifact@v3
43+
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
4444
with:
4545
path: ./site
4646

@@ -53,4 +53,4 @@ jobs:
5353
steps:
5454
- name: Deploy to GitHub Pages
5555
id: deployment
56-
uses: actions/deploy-pages@v4
56+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4

.github/workflows/docker-pr.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
pull-requests: write
2222
steps:
2323
- name: Find existing comment
24-
uses: peter-evans/find-comment@v3
24+
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3
2525
id: find-comment
2626
with:
2727
issue-number: ${{ github.event.pull_request.number }}
2828
comment-author: "github-actions[bot]"
2929
body-includes: "<!-- node-red-seqera-docker-pr-build -->"
3030

3131
- name: Post or update comment (building)
32-
uses: peter-evans/create-or-update-comment@v4
32+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
3333
with:
3434
comment-id: ${{ steps.find-comment.outputs.comment-id }}
3535
issue-number: ${{ github.event.pull_request.number }}
@@ -68,18 +68,18 @@ jobs:
6868
pr-tag: pr-${{ github.event.pull_request.number }}
6969
steps:
7070
- name: Check out the repo
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
7272

7373
- name: Log in to the Container registry
74-
uses: docker/login-action@v3
74+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
7575
with:
7676
registry: ${{ env.REGISTRY }}
7777
username: ${{ github.actor }}
7878
password: ${{ secrets.GITHUB_TOKEN }}
7979

8080
- name: Extract metadata (tags, labels) for Docker
8181
id: meta
82-
uses: docker/metadata-action@v5
82+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
8383
with:
8484
images: ${{ matrix.image_name }}
8585
tags: |
@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Build and push Docker image
9090
id: push
91-
uses: docker/build-push-action@v6
91+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
9292
with:
9393
context: .
9494
file: ${{ matrix.dockerfile }}
@@ -112,7 +112,7 @@ jobs:
112112
EOF
113113
114114
- name: Upload build metadata
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
116116
with:
117117
name: ${{ matrix.artifact_name }}
118118
path: metadata/build-info.json
@@ -130,21 +130,21 @@ jobs:
130130
pull-requests: write
131131
steps:
132132
- name: Download standard build metadata
133-
uses: actions/download-artifact@v4
133+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
134134
with:
135135
name: build-metadata-standard
136136
path: metadata-standard
137137
continue-on-error: true
138138

139139
- name: Download studios build metadata
140-
uses: actions/download-artifact@v4
140+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
141141
with:
142142
name: build-metadata-studios
143143
path: metadata-studios
144144
continue-on-error: true
145145

146146
- name: Find existing comment
147-
uses: peter-evans/find-comment@v3
147+
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3
148148
id: find-comment
149149
with:
150150
issue-number: ${{ github.event.pull_request.number }}
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Update comment (success)
155155
if: needs.build.result == 'success'
156-
uses: peter-evans/create-or-update-comment@v4
156+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
157157
with:
158158
comment-id: ${{ steps.find-comment.outputs.comment-id }}
159159
issue-number: ${{ github.event.pull_request.number }}
@@ -173,7 +173,7 @@ jobs:
173173
174174
- name: Update comment (failure)
175175
if: needs.build.result != 'success'
176-
uses: peter-evans/create-or-update-comment@v4
176+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
177177
with:
178178
comment-id: ${{ steps.find-comment.outputs.comment-id }}
179179
issue-number: ${{ github.event.pull_request.number }}
@@ -201,7 +201,7 @@ jobs:
201201
packages: write
202202
steps:
203203
- name: Delete PR images
204-
uses: actions/github-script@v7
204+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
205205
with:
206206
script: |
207207
const packages = ['node-red-seqera', 'node-red-seqera-studios'];

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
attestations: write
3535
steps:
3636
- name: "Check out the repo"
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
3838

3939
- name: Log in to the Container registry
4040
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
name: "pre-commit"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1313

1414
- uses: j178/prek-action@0bb87d7f00b0c99306c8bcb8b8beba1eb581c037 # v1.1.1

.github/workflows/publish-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
contents: read
1010
id-token: write
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1313
# Setup .npmrc file to publish to npm
14-
- uses: actions/setup-node@v4
14+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1515
with:
1616
node-version: "20.x"
1717
registry-url: "https://registry.npmjs.org"

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1919

2020
- name: Setup Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
cache: "npm"
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Upload coverage to Codecov
3737
if: matrix.node-version == '20.x'
38-
uses: codecov/codecov-action@v4
38+
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
3939
with:
4040
files: ./coverage/lcov.info
4141
fail_ci_if_error: false

0 commit comments

Comments
 (0)