Skip to content

Commit 64cf859

Browse files
chore(deps): pin dependencies (#276)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | -> `11bd719` | | [actions/setup-go](https://redirect.github.com/actions/setup-go) | action | pinDigest | -> `0aaccfd` | | [codecov/codecov-action](https://redirect.github.com/codecov/codecov-action) | action | pinDigest | -> `b9fd7d1` | | [goreleaser/goreleaser-action](https://redirect.github.com/goreleaser/goreleaser-action) | action | pinDigest | -> `9c156ee` | | [ietf-tools/semver-action](https://redirect.github.com/ietf-tools/semver-action) | action | pinDigest | -> `778d1d5` | | [rickstaa/action-create-tag](https://redirect.github.com/rickstaa/action-create-tag) | action | pinDigest | -> `a1c7777` | | [super-linter/super-linter](https://redirect.github.com/super-linter/super-linter) | action | pinDigest | -> `1fa6ba5` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/get-eventually/go-eventually). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMjcuMyIsInVwZGF0ZWRJblZlciI6IjM5LjIyNy4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 72ad95f commit 64cf859

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ jobs:
4848
statuses: write
4949
steps:
5050
- name: Checkout source code
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5252
with:
5353
# Full git history is needed to get a proper
5454
# list of changed files within `super-linter`
5555
fetch-depth: 0
5656
- name: Run super-linter
57-
uses: super-linter/super-linter@v6
57+
uses: super-linter/super-linter@1fa6ba58a88783e9714725cf89ac26d53e80c148 # v6
5858
env:
5959
VALIDATE_ALL_CODEBASE: false
6060
DEFAULT_BRANCH: main

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020
contents: write
2121
steps:
2222
- name: Checkout source code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424
with:
2525
# Using this to pick up the latest tag.
2626
fetch-depth: 0
2727
- name: Get next version
2828
id: semver
29-
uses: ietf-tools/semver-action@v1
29+
uses: ietf-tools/semver-action@778d1d5b7af80aa43f50104116b8363e7fc0d1ef # v1
3030
with:
3131
token: ${{ github.token }}
3232
branch: main
3333
minorList: 'major, breaking'
3434
patchList: 'feat, fix, bugfix, perf, refactor, test, tests, doc, docs'
3535
- name: Push new version tag
36-
uses: rickstaa/action-create-tag@v1
36+
uses: rickstaa/action-create-tag@a1c7777fcb2fee4f19b0f283ba888afa11678b72 # v1
3737
if: ${{ contains(github.ref, 'main') }} # only push tags if on main branch.
3838
with:
3939
tag: ${{ steps.semver.outputs.next }}
@@ -46,15 +46,15 @@ jobs:
4646
needs: [tag]
4747
steps:
4848
- name: Checkout source code
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5050
with:
5151
fetch-depth: 0
5252
- name: Set up Go
53-
uses: actions/setup-go@v5
53+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
5454
with:
5555
go-version: '1.21'
5656
- name: Run GoReleaser
57-
uses: goreleaser/goreleaser-action@v6
57+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6
5858
with:
5959
distribution: goreleaser
6060
version: latest

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: make go.test
3333
shell: nix develop --quiet -c bash -e {0}
3434
- name: Upload coverage report
35-
uses: codecov/codecov-action@v4
35+
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
3636
with:
3737
token: ${{ secrets.CODECOV_TOKEN }}
3838
files: ./coverage.txt

0 commit comments

Comments
 (0)