Skip to content

Commit f7100c5

Browse files
authored
chore(deps): Pin dependencies (#420)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | → `de0fac2` | | [actions/setup-go](https://redirect.github.com/actions/setup-go) | action | pinDigest | → `4b73464` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | pinDigest | → `b7c566a` | | [amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request) | action | pinDigest | → `48f2562` | | [errata-ai/vale-action](https://redirect.github.com/errata-ai/vale-action) | action | pinDigest | → `d89dee9` | | [golangci/golangci-lint-action](https://redirect.github.com/golangci/golangci-lint-action) | action | pinDigest | → `1e7e51e` | | [google-github-actions/release-please-action](https://redirect.github.com/google-github-actions/release-please-action) | action | pinDigest | → `e4dc86b` | | [nosborn/github-action-markdown-cli](https://redirect.github.com/nosborn/github-action-markdown-cli) | action | pinDigest | → `508d6ce` | --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42My4wIiwidXBkYXRlZEluVmVyIjoiNDMuNjMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
1 parent 360d3d3 commit f7100c5

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/lint_golang.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: Lint with GolangCI
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
19-
- uses: actions/setup-go@v6
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
19+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
2020
with:
2121
go-version-file: go.mod
2222
cache: true
2323
- name: golangci-lint
24-
uses: golangci/golangci-lint-action@v9
24+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
2525
with:
2626
version: v2.10.1
2727
args: --verbose

.github/workflows/lint_markdown.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Git checkout
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1818
- name: Vale
19-
uses: errata-ai/vale-action@v2
19+
uses: errata-ai/vale-action@d89dee975228ae261d22c15adcd03578634d429c # v2
2020
with:
2121
vale_flags: "--glob=!{**/.snapshots/*,CHANGELOG.md,.github/styles/proselint/README.md}"
2222
filter_mode: nofilter
@@ -26,9 +26,9 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Git checkout
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3030
- name: markdownlint-cli
31-
uses: nosborn/[email protected]
31+
uses: nosborn/github-action-markdown-cli@508d6cefd8f0cc99eab5d2d4685b1d5f470042c1 # v3.5.0
3232
with:
3333
files: .
3434
config_file: .markdownlint.yaml

.github/workflows/pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Please look up the latest version from
1919
# https://github.com/amannn/action-semantic-pull-request/releases
20-
- uses: amannn/action-semantic-pull-request@v6
20+
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323
with:

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
release-please:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: google-github-actions/release-please-action@v4
14+
- uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4
1515
id: release
1616
with:
1717
token: ${{ secrets.GH_CQ_BOT }}

.github/workflows/unittest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
git config --global core.autocrlf false
2424
git config --global core.eol lf
2525
- name: Check out code into the Go module directory
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2727
- name: Set up Go 1.x
28-
uses: actions/setup-go@v6
28+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
2929
with:
3030
go-version-file: "go.mod"
3131
cache: true
@@ -40,7 +40,7 @@ jobs:
4040
- name: Generate coverage report
4141
if: always() && matrix.os == 'ubuntu-latest'
4242
run: go tool cover -html coverage.out -o coverage.html
43-
- uses: actions/upload-artifact@v6
43+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
4444
if: always() && matrix.os == 'ubuntu-latest'
4545
with:
4646
name: Code coverage

0 commit comments

Comments
 (0)