Skip to content

Commit 862024f

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

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:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
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:5429efb7de864db15bd99b91b67608d52f97945837c7f6f7d1b779f9bfe46281
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:70eca392e3d52cb7d133b52d52e8600d8c410a5eaee6105c11324b28868f9ac9
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:bb2c06f24622d10187d0884b5b0a66426a9c8511c344492ed61b5d382bd6018c
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:e5c30595c6a322bc3fbaacd5e35d698a6b9e6d1079ab0af09ffe52f5816aec3b
22

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

0 commit comments

Comments
 (0)