diff --git a/.github/workflows/bash.yml b/.github/workflows/bash.yml index 0d3de63..9c85b29 100644 --- a/.github/workflows/bash.yml +++ b/.github/workflows/bash.yml @@ -15,10 +15,10 @@ jobs: steps: - name: clone - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: docker - uses: elgohr/Publish-Docker-Github-Action@v4 + uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4 with: name: target/vela-sample:bash workdir: plugins/bash diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 932d55b..67bee22 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,10 +15,10 @@ jobs: steps: - name: clone - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: install go - uses: actions/setup-go@v3 + uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3 with: go-version: '>=1.19.0' @@ -34,7 +34,7 @@ jobs: plugins/go/main.go - name: docker - uses: elgohr/Publish-Docker-Github-Action@v4 + uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4 with: name: target/vela-sample:go workdir: plugins/go diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 2bbb1f0..681982a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -15,15 +15,15 @@ jobs: steps: - name: clone - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: install node - uses: actions/setup-node@v3 + uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 with: node-version: 16 - name: docker - uses: elgohr/Publish-Docker-Github-Action@v4 + uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4 with: name: target/vela-sample:node workdir: plugins/node.js diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 9766086..3a14312 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -15,15 +15,15 @@ jobs: steps: - name: clone - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4 with: python-version: '3.10' - name: docker - uses: elgohr/Publish-Docker-Github-Action@v4 + uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4 with: name: target/vela-sample:python workdir: plugins/python diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 9519208..d00d5c3 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -15,7 +15,7 @@ jobs: steps: - name: clone - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - name: setup ruby uses: ruby/setup-ruby@v1 @@ -23,7 +23,7 @@ jobs: ruby-version: '3.0' - name: docker - uses: elgohr/Publish-Docker-Github-Action@v4 + uses: elgohr/Publish-Docker-Github-Action@742a180fa47f3adfb5115902ae4955acc6ad769b # v4 with: name: target/vela-sample:ruby workdir: plugins/ruby diff --git a/plugins/bash/Dockerfile b/plugins/bash/Dockerfile index 9a6b0ea..b779de1 100644 --- a/plugins/bash/Dockerfile +++ b/plugins/bash/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine +FROM alpine@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5 RUN apk add --update --no-cache bash ca-certificates curl diff --git a/plugins/go/Dockerfile b/plugins/go/Dockerfile index 920640b..271fbf9 100644 --- a/plugins/go/Dockerfile +++ b/plugins/go/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine +FROM golang:alpine@sha256:0d3653dd6f35159ec6e3d10263a42372f6f194c3dea0b35235d72aabde86486e RUN apk add --update --no-cache ca-certificates diff --git a/plugins/node.js/Dockerfile b/plugins/node.js/Dockerfile index 7fb13a1..2d59896 100644 --- a/plugins/node.js/Dockerfile +++ b/plugins/node.js/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node:alpine@sha256:39005f06b2fae765764d6fdf20ad1c4d0890f5ad3e1f39b56a18768334b8ecd6 RUN apk add --update --no-cache ca-certificates diff --git a/plugins/python/Dockerfile b/plugins/python/Dockerfile index a05dc73..22fe43b 100644 --- a/plugins/python/Dockerfile +++ b/plugins/python/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:alpine@sha256:63094abdaf49e046da9f6529ecd6ce4d853d9bfbf00a25c52bbbb68b3223b490 RUN apk add --update --no-cache ca-certificates diff --git a/plugins/ruby/Dockerfile b/plugins/ruby/Dockerfile index 69ff5a8..a30f60a 100644 --- a/plugins/ruby/Dockerfile +++ b/plugins/ruby/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:alpine +FROM ruby:alpine@sha256:9fc2d9dd146a47fddcf2b69e3174d92ee1a654fbbe73f97b858505394748ac6e RUN apk add --update --no-cache ca-certificates