Skip to content

Commit 5af57f1

Browse files
committed
Merge branch 'main' into docs-v2
2 parents ac819d8 + 97b9e51 commit 5af57f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2224
-781
lines changed

.github/actions/update-internal-mirrors/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
using: 'composite'
2828
steps:
2929
- name: Checkout the Repo
30-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
30+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
3131
- name: Configure AWS Credentials
3232
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
3333
with:

.github/workflows/docker-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
tests: TestPostgres|TestMockServer|TestKillgrave
2323
steps:
2424
- name: Checkout the Repo
25-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
25+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2626
- name: Install Go
27-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
27+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
2828
with:
2929
test_download_vendor_packages_command: cd lib && go mod download
3030
go_mod_path: ./lib/go.mod
@@ -44,7 +44,7 @@ jobs:
4444
go test -timeout 20m -json -parallel 2 -cover -covermode=atomic -coverprofile=unit-test-coverage.out $(go list ./... | grep /docker/test_env) -run '${{ matrix.test.tests }}' 2>&1 | tee /tmp/gotest.log | ../gotestloghelper -ci
4545
- name: Publish Artifacts
4646
if: failure()
47-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
47+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
4848
with:
4949
name: test-logs
5050
path: ./lib/logs

.github/workflows/k8s-e2e.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
id-token: write
2626
contents: read
2727
steps:
28-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
28+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2929
- name: Build Base Image
30-
uses: smartcontractkit/chainlink-github-actions/docker/build-push@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
30+
uses: smartcontractkit/chainlink-github-actions/docker/build-push@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
3131
with:
3232
tags: ${{ env.BASE_IMAGE_NAME }}
3333
file: lib/k8s/Dockerfile.base
@@ -41,7 +41,7 @@ jobs:
4141
### test-base-image image tag for this test run :ship: => \`ci.${{ github.sha }}\`
4242
EOT
4343
- name: Build Test Runner
44-
uses: smartcontractkit/chainlink-github-actions/docker/build-push@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
44+
uses: smartcontractkit/chainlink-github-actions/docker/build-push@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
4545
with:
4646
tags: ${{ env.ENV_JOB_IMAGE }}
4747
file: lib/k8s/Dockerfile
@@ -65,15 +65,15 @@ jobs:
6565
env:
6666
TEST_SUITE: local-runner
6767
steps:
68-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
68+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
6969
- name: Install Nix
70-
uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
70+
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
7171
with:
7272
nix_path: nixpkgs=channel:nixos-unstable
7373
- name: Load Nix
7474
run: nix develop -c sh -c "cd lib &&go mod download"
7575
- name: Setup environment
76-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
76+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
7777
with:
7878
go_mod_path: go.mod
7979
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }}
@@ -83,7 +83,7 @@ jobs:
8383
- name: Run Tests
8484
env:
8585
LOCAL_CHARTS: true
86-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
86+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
8787
with:
8888
cl_repo: ${{ env.CHAINLINK_IMAGE }}
8989
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
@@ -99,7 +99,7 @@ jobs:
9999
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
100100
run_setup: false
101101
- name: Upload test log
102-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
102+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
103103
if: failure()
104104
with:
105105
name: test-log
@@ -116,23 +116,23 @@ jobs:
116116
TEST_SUITE: remote-runner
117117
TEST_TRIGGERED_BY: chainlink-testing-framework-remote-runner-ci
118118
steps:
119-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
119+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
120120
- name: Install Nix
121-
uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
121+
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
122122
with:
123123
nix_path: nixpkgs=channel:nixos-unstable
124124
- name: Load Nix
125125
run: nix develop -c sh -c "cd lib && go mod download"
126126
- name: Setup environment
127-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
127+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-run-tests-environment@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
128128
with:
129129
go_mod_path: go.mod
130130
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }}
131131
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
132132
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
133133
go_necessary: false
134134
- name: Run Remote Runner Tests
135-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
135+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
136136
with:
137137
cl_repo: ${{ env.CHAINLINK_IMAGE }}
138138
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
@@ -147,7 +147,7 @@ jobs:
147147
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
148148
run_setup: false
149149
- name: Upload test log
150-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
150+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
151151
if: failure()
152152
with:
153153
name: remote-runner-test-log

.github/workflows/k8s-publish-test-base-image.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
tags:
55
# we only need base image for k8s based tests
66
- 'lib/v*'
7+
workflow_dispatch:
78

89
jobs:
910
publish_test_base_image:
@@ -15,15 +16,17 @@ jobs:
1516
env:
1617
BASE_IMAGE_TAG: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/test-base-image:${{ github.ref_name }}
1718
steps:
18-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
19+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1920

2021
- name: Strip "lib/" from github.ref_name
2122
run: |
2223
stripped_ref_name="${GITHUB_REF//refs\/tags\/lib\//}"
24+
# disabling as the string containing variable is double-quotted as a whole, no need to quote each variable separately
25+
# shellcheck disable=SC2086
2326
echo "BASE_IMAGE_TAG=${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/test-base-image:$stripped_ref_name" >> $GITHUB_ENV
2427
2528
- name: Build Base Image
26-
uses: smartcontractkit/chainlink-github-actions/docker/build-push@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
29+
uses: smartcontractkit/chainlink-github-actions/docker/build-push@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
2730
with:
2831
tags: ${{ env.BASE_IMAGE_TAG }}
2932
file: lib/k8s/Dockerfile.base

.github/workflows/lint.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout the Repo
14-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
14+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1515
with:
1616
fetch-depth: 0 # needed for pre-commit to work correctly
1717
- name: Install Nix
18-
uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
18+
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
1919
with:
2020
nix_path: nixpkgs=channel:nixos-unstable
2121
- name: Run pre-commit checks
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out Code
29-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
29+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
3030
- name: Parse tool-versions file
3131
uses: smartcontractkit/tool-versions-to-env-action@aabd5efbaf28005284e846c5cf3a02f2cba2f4c2 # v1.0.8
3232
id: tool-versions
@@ -58,9 +58,9 @@ jobs:
5858
path: ./tools/workflowresultparser/
5959
steps:
6060
- name: Check out Code
61-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
61+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
6262
- name: Install Go
63-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
63+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
6464
with:
6565
test_download_vendor_packages_command: cd ${{ matrix.project.path }} && go mod download
6666
go_mod_path: ${{ matrix.project.path }}go.mod
@@ -78,7 +78,7 @@ jobs:
7878
run: test -f ${{ matrix.project.path }}golangci-lint-report.xml || true
7979
- name: Store lint report artifact
8080
if: always()
81-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
81+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
8282
with:
8383
name: golangci-lint-report-${{ matrix.project.name }}
8484
path: ${{ matrix.project.path }}golangci-lint-report.xml
@@ -89,9 +89,9 @@ jobs:
8989
needs: [tools]
9090
steps:
9191
- name: Check out Code
92-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
92+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
9393
- name: Install Go
94-
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@e29366cdecfe6befff9ab8c3cfe4825218505d58 # v2.3.16
94+
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/setup-go@d2f9642bcc24a73400568756f24b72c188ac7a9a # v2.3.31
9595
with:
9696
test_download_vendor_packages_command: cd lib && go mod download
9797
go_mod_path: ./lib/go.mod
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- name: Check out Code
111-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
111+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
112112
- name: Install asdf dependencies
113113
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3.0.2
114114

@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-latest
118118
steps:
119119
- name: Checkout
120-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
120+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
121121
with:
122122
# Without this parameter, the merged commit that CI produces will make it so that ct will
123123
# not detect a diff even if one exists
@@ -134,23 +134,23 @@ jobs:
134134
runs-on: ubuntu-latest
135135
steps:
136136
- name: Check out Code
137-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
137+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
138138
- name: Run actionlint
139-
uses: reviewdog/action-actionlint@9d8b58041eed1373f173e91b9a3db5a844197236 # v1.44.0
139+
uses: reviewdog/action-actionlint@7eeec1dd160c2301eb28e1568721837d084558ad # v1.57.0
140140

141141
sonarqube:
142142
name: SonarQube Analysis
143143
needs: [golangci]
144144
runs-on: ubuntu-latest
145145
steps:
146146
- name: Checkout the repo
147-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
147+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
148148
with:
149149
fetch-depth: 0 # fetches all history for all tags and branches to provide more metadata for sonar reports
150150
- name: Download all workflow run artifacts
151-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
151+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
152152
- name: SonarQube Scan
153-
uses: sonarsource/sonarqube-scan-action@53c3e3207fe4b8d52e2f1ac9d6eb1d2506f626c0 # v2.0.2
153+
uses: sonarsource/sonarqube-scan-action@884b79409bbd464b2a59edc326a4b77dc56b2195 # v3.0.0
154154
with:
155155
args: >
156156
-Dsonar.go.golangci-lint.reportPaths=golangci-lint-report/golangci-lint-report.xml

.github/workflows/rc-breaking-changes.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
fetch-depth: 0
1818
fetch-tags: true
1919
- name: Set up Go 1.22.6
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: '1.22.6'
2323
- name: Install gorelease tool
2424
run: |
2525
go install golang.org/x/exp/cmd/gorelease@latest
2626
- name: Run Breaking Changes Script
2727
run: |
28-
go run ./tools/breakingchanges/cmd/main.go --ignore tools
28+
go run ./tools/breakingchanges/cmd/main.go --ignore tools

.github/workflows/release-go-module.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Release Go module
66
on:
77
push:
88
tags:
9-
- '*/v*.*.*' # Trigger only on tags with the format $package/vX.X.X
9+
- '**/v*.*.*' # Trigger on all tags ending with /vX.X.X
1010

1111
permissions:
1212
contents: write
@@ -30,8 +30,8 @@ jobs:
3030
id: extract_package_name
3131
run: |
3232
TAG_REF="${GITHUB_REF#refs/tags/}"
33-
PACKAGE_NAME=$(echo "$TAG_REF" | cut -d'/' -f1)
34-
VERSION=$(echo "$TAG_REF" | cut -d'/' -f2)
33+
PACKAGE_NAME="${TAG_REF%/*}"
34+
VERSION="${TAG_REF##*/}"
3535
echo "Tag Reference: $TAG_REF"
3636
echo "Package Name: $PACKAGE_NAME"
3737
echo "Version: $VERSION"
@@ -41,11 +41,6 @@ jobs:
4141
- name: Find Last Tag for Package and Generate Release Notes
4242
id: generate_release_notes
4343
run: |
44-
# Extract the package name and version from the tag
45-
TAG_REF="${GITHUB_REF#refs/tags/}"
46-
PACKAGE_NAME=$(echo "$TAG_REF" | cut -d'/' -f1)
47-
VERSION=$(echo "$TAG_REF" | cut -d'/' -f2)
48-
4944
# Find the latest tag for the same package that is not the current tag
5045
LAST_TAG=$(git describe --abbrev=0 --always --match "$PACKAGE_NAME/v*" --tags $(git rev-list --tags --skip=1 --max-count=1))
5146
echo "Last tag: ${LAST_TAG}"
@@ -56,7 +51,7 @@ jobs:
5651
fi
5752
5853
# Extract the version part of the last tag
59-
LAST_TAG_VERSION=$(echo "$LAST_TAG" | cut -d'/' -f2)
54+
LAST_TAG_VERSION="${LAST_TAG##*/}"
6055
echo "Last tag version: $LAST_TAG_VERSION"
6156
echo "LAST_TAG_VERSION=${LAST_TAG_VERSION}" >> "$GITHUB_ENV"
6257
@@ -123,7 +118,7 @@ jobs:
123118
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
124119
run: |
125120
sudo apt-get install -y gh
126-
gh release create "${{ env.PACKAGE_NAME }}-${{ env.VERSION }}" --title "${{ env.PACKAGE_NAME }} ${{ env.VERSION }}" --notes "${{ env.FULL_RELEASE_NOTES }}" || true
121+
gh release create "${{ env.PACKAGE_NAME }}/${{ env.VERSION }}" --title "${{ env.PACKAGE_NAME }}/${{ env.VERSION }}" --notes "${{ env.FULL_RELEASE_NOTES }}" || true
127122
- name: Check if 'cmd' directory exists and set environment variable
128123
run: |
129124
if [ -f "$GITHUB_WORKSPACE/${{ env.PACKAGE_NAME }}/cmd/main.go" ]; then

.github/workflows/seth-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repo
15-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
15+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1616
- name: Check for changes in Seth project
1717
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
1818
id: changes
1919
with:
2020
filters: |
2121
src:
2222
- 'seth/**'
23-
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
23+
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2424
if: steps.changes.outputs.src == 'true'
2525
with:
2626
nix_path: nixpkgs=channel:nixos-unstable

.github/workflows/seth-test-api.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
SETH_ROOT_PRIVATE_KEY: ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
1818
steps:
1919
- name: Checkout repo
20-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
20+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2121
- name: Check for changes in Seth project
2222
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
2323
id: changes
2424
with:
2525
filters: |
2626
src:
2727
- 'seth/**'
28-
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
28+
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2929
if: steps.changes.outputs.src == 'true'
3030
with:
3131
nix_path: nixpkgs=channel:nixos-unstable

.github/workflows/seth-test-bumping.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
SETH_ROOT_PRIVATE_KEY: ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
1818
steps:
1919
- name: Checkout repo
20-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
20+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2121
- name: Check for changes in Seth project
2222
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
2323
id: changes
2424
with:
2525
filters: |
2626
src:
2727
- 'seth/**'
28-
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
28+
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2929
if: steps.changes.outputs.src == 'true'
3030
with:
3131
nix_path: nixpkgs=channel:nixos-unstable

0 commit comments

Comments
 (0)