Skip to content

Commit ad5bbcf

Browse files
chore(deps): pin dependencies
1 parent 0681f7e commit ad5bbcf

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/workflows/bash.yml

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

1616
steps:
1717
- name: clone
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919

2020
- name: docker
21-
uses: elgohr/Publish-Docker-Github-Action@v4
21+
uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4
2222
with:
2323
name: target/vela-sample:bash
2424
workdir: plugins/bash

.github/workflows/go.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: clone
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919

2020
- name: install go
21-
uses: actions/setup-go@v3
21+
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3
2222
with:
2323
go-version: '>=1.19.0'
2424

@@ -34,7 +34,7 @@ jobs:
3434
plugins/go/main.go
3535
3636
- name: docker
37-
uses: elgohr/Publish-Docker-Github-Action@v4
37+
uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4
3838
with:
3939
name: target/vela-sample:go
4040
workdir: plugins/go

.github/workflows/node.js.yml

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

1616
steps:
1717
- name: clone
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919

2020
- name: install node
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
2222
with:
2323
node-version: 16
2424

2525
- name: docker
26-
uses: elgohr/Publish-Docker-Github-Action@v4
26+
uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4
2727
with:
2828
name: target/vela-sample:node
2929
workdir: plugins/node.js

.github/workflows/python.yml

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

1616
steps:
1717
- name: clone
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919

2020
- name: setup python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
2222
with:
2323
python-version: '3.10'
2424

2525
- name: docker
26-
uses: elgohr/Publish-Docker-Github-Action@v4
26+
uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4
2727
with:
2828
name: target/vela-sample:python
2929
workdir: plugins/python

.github/workflows/ruby.yml

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

1616
steps:
1717
- name: clone
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
1919

2020
- name: setup ruby
2121
uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: '3.0'
2424

2525
- name: docker
26-
uses: elgohr/Publish-Docker-Github-Action@v4
26+
uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4
2727
with:
2828
name: target/vela-sample:ruby
2929
workdir: plugins/ruby

plugins/bash/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine
1+
FROM alpine@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
22

33
RUN apk add --update --no-cache bash ca-certificates curl
44

plugins/go/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:alpine
1+
FROM golang:alpine@sha256:3d74d23af285af08b6a2c89a15c437b9bc2854f63948fb8fd703823528820230
22

33
RUN apk add --update --no-cache ca-certificates
44

plugins/node.js/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:alpine
1+
FROM node:alpine@sha256:0a29d8a047149079bf48dab598f287815e39867d547e8f3935cfdece0a4379cc
22

33
RUN apk add --update --no-cache ca-certificates
44

plugins/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:alpine
1+
FROM python:alpine@sha256:323a717dc4a010fee21e3f1aac738ee10bb485de4e7593ce242b36ee48d6b352
22

33
RUN apk add --update --no-cache ca-certificates
44

plugins/ruby/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:alpine
1+
FROM ruby:alpine@sha256:5105211fa0071b2748c95a54cd8f8cfce206754584581df59e22963e98d2a1cd
22

33
RUN apk add --update --no-cache ca-certificates
44

0 commit comments

Comments
 (0)