From 1f9aec729ba77ec4b3e6e346ef3277bd8107a414 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 07:43:43 +0000 Subject: [PATCH] chore(deps): pin dependencies --- .github/workflows/bash.yml | 4 ++-- .github/workflows/go.yml | 6 +++--- .github/workflows/node.js.yml | 6 +++--- .github/workflows/python.yml | 6 +++--- .github/workflows/ruby.yml | 4 ++-- plugins/bash/Dockerfile | 2 +- plugins/go/Dockerfile | 2 +- plugins/node.js/Dockerfile | 2 +- plugins/python/Dockerfile | 2 +- plugins/ruby/Dockerfile | 2 +- 10 files changed, 18 insertions(+), 18 deletions(-) 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..d2107e4 100644 --- a/plugins/go/Dockerfile +++ b/plugins/go/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine +FROM golang:alpine@sha256:24f1bfa32fbf21eec3d764ed190adb78ee3147c6c3558c950c2be6bf6fc23a1b RUN apk add --update --no-cache ca-certificates diff --git a/plugins/node.js/Dockerfile b/plugins/node.js/Dockerfile index 7fb13a1..19ce942 100644 --- a/plugins/node.js/Dockerfile +++ b/plugins/node.js/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node:alpine@sha256:be6983df6443f143f9e9ba8dff99b44c14556093abc8d1501064a1aff2c372d4 RUN apk add --update --no-cache ca-certificates diff --git a/plugins/python/Dockerfile b/plugins/python/Dockerfile index a05dc73..4343708 100644 --- a/plugins/python/Dockerfile +++ b/plugins/python/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:alpine@sha256:100d96cd32e818e470a4793ef56806c52052e7f76de0093a012625a02eb0a780 RUN apk add --update --no-cache ca-certificates diff --git a/plugins/ruby/Dockerfile b/plugins/ruby/Dockerfile index 69ff5a8..741790d 100644 --- a/plugins/ruby/Dockerfile +++ b/plugins/ruby/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:alpine +FROM ruby:alpine@sha256:16541bb777ef7bf4f1865bd9c4c70ffbe22d78d32d08b8104c19684810678c42 RUN apk add --update --no-cache ca-certificates