Skip to content

Commit c74a4cc

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

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
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: 4 additions & 4 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:
23-
python-version: '3.10'
23+
python-version: '3.13'
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:43c094ad24b6ac0546c62193baeb3e6e49ce14d3250845d166c77c25f64b0386
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:6eae672406a2bc8ed93eab6f9f76a02eb247e06ba82b2f5032c0a4ae07e825ba
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:cb6a5cb7303314946b75fa64c96d8116f838b8495ffa161610bd6aaaf9a70121
22

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

0 commit comments

Comments
 (0)