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..bc1dcbd 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@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # 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..8355cc2 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@61a6322f88396a6271a6ee3565807d608ecaddd1 # 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..e80896a 100644 --- a/plugins/bash/Dockerfile +++ b/plugins/bash/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine +FROM alpine@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978 RUN apk add --update --no-cache bash ca-certificates curl diff --git a/plugins/go/Dockerfile b/plugins/go/Dockerfile index 920640b..a4f46cb 100644 --- a/plugins/go/Dockerfile +++ b/plugins/go/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine +FROM golang:alpine@sha256:4bc6541af94a67d9dcabba9826c36e4e9497dacf4e8755ac503000b6ff75318f RUN apk add --update --no-cache ca-certificates diff --git a/plugins/node.js/Dockerfile b/plugins/node.js/Dockerfile index 7fb13a1..d761581 100644 --- a/plugins/node.js/Dockerfile +++ b/plugins/node.js/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node:alpine@sha256:a348d50e74df20fa8c572c3abf80b89ae4daf9c312523c49a42997284d13ebac RUN apk add --update --no-cache ca-certificates diff --git a/plugins/python/Dockerfile b/plugins/python/Dockerfile index a05dc73..fe3207c 100644 --- a/plugins/python/Dockerfile +++ b/plugins/python/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:alpine@sha256:cd311c6a0164f34a7edbf364e05258b07d66d3f7bc155139dcb9bef88a186ded RUN apk add --update --no-cache ca-certificates diff --git a/plugins/ruby/Dockerfile b/plugins/ruby/Dockerfile index 69ff5a8..fe19ac1 100644 --- a/plugins/ruby/Dockerfile +++ b/plugins/ruby/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:alpine +FROM ruby:alpine@sha256:86a24c13e8b0f52d02c48899db5c3c60fb2236de6c8ef8cbe46aca599ece0709 RUN apk add --update --no-cache ca-certificates