-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(deps): Enable dependabot for actions (#617)
* ci(deps): Enable dependabot for actions There are lots of outdated github-actions, let's update them. * chore(deps): Pin all github actions If I understand correctly, this should "force" dependabot to update the pins in the future. Not entirely sure tho.
- Loading branch information
Showing
6 changed files
with
32 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ on: | |
- main | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
check-proposals: | ||
name: Check if library is up to date | ||
|
@@ -24,17 +25,17 @@ jobs: | |
pull-requests: write | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
uses: foundry-rs/foundry-toolchain@362aa1be8f31305295acb1032271acd5e9b99312 # pin@v1 | ||
with: | ||
version: nightly | ||
|
||
- uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # pin@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
cache: "yarn" | ||
|
@@ -57,7 +58,7 @@ jobs: | |
RPC_SCROLL: ${{ secrets.RPC_SCROLL }} | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@00897e0bc2ceba9f86c9b0fda8429107112e6fa5 | ||
uses: peter-evans/create-pull-request@00897e0bc2ceba9f86c9b0fda8429107112e6fa5 # pin@00897e0bc2ceba9f86c9b0fda8429107112e6fa5 | ||
with: | ||
author: Cache-bot <[email protected]> | ||
committer: Cache-bot <[email protected]> | ||
|
@@ -68,7 +69,7 @@ jobs: | |
- name: Post to a Slack channel | ||
id: slack | ||
if: failure() | ||
uses: slackapi/[email protected] | ||
uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # pin@v1.24.0 | ||
with: | ||
# Slack channel id, channel name, or user id to post message. | ||
# See also: https://api.slack.com/methods/chat.postMessage#channels | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ permissions: | |
name: release-please | ||
jobs: | ||
test-node: | ||
uses: bgd-labs/github-workflows/.github/workflows/test-node.yml@main | ||
uses: bgd-labs/github-workflows/.github/workflows/test-node.yml@130a99a60ad2c4944ab6114105d86fcbb841af77 # pin@main | ||
secrets: inherit | ||
|
||
release-please: | ||
|
@@ -19,13 +19,13 @@ jobs: | |
outputs: | ||
releaseCreated: ${{ steps.release.outputs.release_created }} | ||
steps: | ||
- uses: googleapis/[email protected] | ||
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # pin@v4.1.3 | ||
id: release | ||
with: | ||
release-type: node | ||
|
||
release-node: | ||
uses: bgd-labs/github-workflows/.github/workflows/release-node.yml@main | ||
uses: bgd-labs/github-workflows/.github/workflows/release-node.yml@130a99a60ad2c4944ab6114105d86fcbb841af77 # pin@main | ||
if: ${{ needs.release-please.outputs.releaseCreated }} | ||
needs: release-please | ||
secrets: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters