Skip to content

Commit 761bb2e

Browse files
chore(deps): pin dependencies
Signed-off-by: usa-reddragon-renovate-ce[bot] <156608365+usa-reddragon-renovate-ce[bot]@users.noreply.github.com>
1 parent 19cd6f4 commit 761bb2e

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
docker:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2222
with:
2323
fetch-depth: 0
2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v3
25+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
2626
- name: Log in to GHCR
27-
uses: docker/login-action@v3
27+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.actor }}
@@ -62,7 +62,7 @@ jobs:
6262
git tag ${{ steps.full_version.outputs.full_version }}
6363
git push origin ${{ steps.full_version.outputs.full_version }}
6464
- name: Build and push
65-
uses: docker/build-push-action@v6
65+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
6666
with:
6767
push: true
6868
tags: ghcr.io/usa-reddragon/kiri:${{ steps.tag_name.outputs.tag }}
@@ -79,15 +79,15 @@ jobs:
7979
run: |
8080
echo "major_version=${GITHUB_REF#refs/*/}" | sed 's/\.[^.]*$//' | sed 's/\.[^.]*$//' >> $GITHUB_OUTPUT
8181
- name: Build and push minor version
82-
uses: docker/build-push-action@v6
82+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
8383
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'release'
8484
with:
8585
push: true
8686
tags: ghcr.io/usa-reddragon/kiri:${{ steps.minor_version.outputs.minor_version }}
8787
cache-from: type=gha
8888
cache-to: type=gha,mode=max
8989
- name: Build and push major version
90-
uses: docker/build-push-action@v6
90+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
9191
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'release'
9292
with:
9393
push: true
@@ -108,7 +108,7 @@ jobs:
108108
- name: Create Release
109109
id: create_release
110110
if: startsWith(github.ref, 'refs/tags/v')
111-
uses: actions/create-release@v1
111+
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1
112112
env:
113113
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
114114
with:
@@ -118,7 +118,7 @@ jobs:
118118
prerelease: false
119119
- name: Create Issue on Failure
120120
if: failure() && startsWith(github.ref, 'refs/tags/v')
121-
uses: actions/github-script@v7
121+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
122122
with:
123123
github-token: ${{ secrets.GITHUB_TOKEN }}
124124
script: |

.github/workflows/notify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Send notification
14-
uses: USA-RedDragon/telegram-notification@v1.0.0
14+
uses: USA-RedDragon/telegram-notification@5c9e380b10cc3af7bd3290a51c3e42485ee2b93f # v1.0.0
1515
with:
1616
bot-token: ${{ secrets.TG_BOT_TOKEN }}
1717
chat-id: ${{ secrets.TG_CHAT_ID }}

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
name: Build and Test
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1616
# Docker testing
1717
- name: Set up Docker Buildx
18-
uses: docker/setup-buildx-action@v3
18+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
1919
with:
2020
driver: docker
2121
- name: Log in to GHCR
22-
uses: docker/login-action@v3
22+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
2323
with:
2424
registry: ghcr.io
2525
username: ${{ github.actor }}
2626
password: ${{ secrets.PAT }}
2727
- name: Build version
28-
uses: docker/build-push-action@v6
28+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
2929
with:
3030
push: true
3131
tags: ghcr.io/usa-reddragon/kiri-ci:${{ github.sha }}
@@ -34,7 +34,7 @@ jobs:
3434
sed -i "s#ghcr.io/usa-reddragon/kiri:__KIRI_VERSION__#ghcr.io/usa-reddragon/kiri-ci:${{ github.sha }}#g" action.yml
3535
# Action testing
3636
- name: Clone SnekSafe for testing
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
3838
with:
3939
repository: USA-RedDragon/SnekSafe
4040
path: SnekSafe

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Latest stable version of Ubuntu, of course
3-
FROM ubuntu:24.04
3+
FROM ubuntu:24.04@sha256:cd1dba651b3080c3686ecf4e3c4220f026b521fb76978881737d24f200828b2b
44

55
LABEL org.opencontainers.image.authors "Leandro Heck <leoheck@gmail.com>, Jacob McSwain <kiri-github-action@mcswain.dev>"
66
LABEL org.opencontainers.image.description "Kicad 9 and KiRI"

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ runs:
115115
path: ${{ steps.kiri-output.outputs.output-dir }}
116116
- name: Checkout gh-pages branch
117117
if: github.event_name == 'pull_request'
118-
uses: actions/checkout@v4
118+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
119119
with:
120120
ref: gh-pages
121121
fetch-depth: 0
@@ -148,7 +148,7 @@ runs:
148148
REPO: ${{ github.repository }}
149149
- name: Create a comment with the link to the output
150150
if: github.event_name == 'pull_request' && github.event.action != 'closed' && steps.kicad-files.outputs.changed == 'true'
151-
uses: peter-evans/create-or-update-comment@v4
151+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
152152
with:
153153
issue-number: ${{ github.event.pull_request.number }}
154154
body: |
@@ -175,7 +175,7 @@ runs:
175175
git push origin gh-pages
176176
- name: Create a comment on the PR
177177
if: steps.delete.outputs.deleted == 'true' && github.event_name == 'pull_request' && github.event.action == 'closed'
178-
uses: peter-evans/create-or-update-comment@v4
178+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
179179
with:
180180
issue-number: ${{ github.event.pull_request.number }}
181181
body: |

0 commit comments

Comments
 (0)