Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check if deny licenses are in sync
id: check-sync
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pull-request-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -32,7 +32,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -49,7 +49,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -64,14 +64,14 @@
# Disable this job until it's updated to be:
# 1. More generalizable for all workspaces requiring build artifacts
# 2. Have better attribution for the commits generated from this workflow
if: false

Check failure on line 67 in .github/workflows/pull-request-main.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 constant expression "false" in condition. remove the if: section [if-cond] Raw Output: e:.github/workflows/pull-request-main.yml:67:9: constant expression "false" in condition. remove the if: section [if-cond]
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Commit back any changes based on the commit that triggered this action
# rather than merge commit of main into the PR branch
Expand Down Expand Up @@ -101,7 +101,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -119,7 +119,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -136,7 +136,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -163,7 +163,7 @@
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: ci-lint
uses: ./actions/ci-lint-ts
Expand All @@ -29,7 +29,7 @@ jobs:
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -46,7 +46,7 @@ jobs:
contents: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -68,7 +68,7 @@ jobs:
actions: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -87,7 +87,7 @@ jobs:
actions: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-apidiff-go-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
modules-json: ${{ steps.changed-modules.outputs.modules-json }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -69,7 +69,7 @@ jobs:
module: ${{ fromJson(needs.changed-modules.outputs.modules-json) }}
steps:
- name: Checkout the repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,12 +418,12 @@
docker-restore-cache: ${{ steps.should-cache.outputs.docker-restore-cache }}
docker-save-cache: ${{ steps.should-cache.outputs.docker-save-cache }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
fetch-depth: 1
ref: ${{ inputs.git-sha }}
- name: Get Date

Check warning

Code scanning / CodeQL

Checkout of untrusted code in a trusted context Medium

Potential unsafe checkout of untrusted pull request on privileged workflow.
id: get-date
run: |
echo "Getting today's date..."
Expand Down Expand Up @@ -562,7 +562,7 @@
environment:
name: ${{ inputs.environment }}
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 565 in .github/workflows/reusable-docker-build-publish.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/reusable-docker-build-publish.yml:565:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
runs-on: ${{ matrix.runner }}
timeout-minutes: ${{ inputs.timeout }}
strategy:
Expand All @@ -577,15 +577,15 @@
if: ${{ inputs.free-disk-space == 'true' }}
uses: smartcontractkit/.github/actions/free-disk-space@free-disk-space/v1

- uses: actions/checkout@v6
- uses: actions/checkout@v7
id: checkout
with:
persist-credentials: false
fetch-depth: 1
ref: ${{ inputs.git-sha }}
# Generated tags must be compatible with:
# https://github.com/docker/metadata-action?tab=readme-ov-file#tags-input
- name: Set Docker image tags

Check warning

Code scanning / CodeQL

Checkout of untrusted code in a trusted context Medium

Potential unsafe checkout of untrusted pull request on privileged workflow.
id: set-docker-image-tags
env:
DATE: ${{ needs.init.outputs.date }}
Expand Down Expand Up @@ -728,7 +728,7 @@
environment:
name: ${{ inputs.environment }}
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 731 in .github/workflows/reusable-docker-build-publish.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/reusable-docker-build-publish.yml:731:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
runs-on: ubuntu-24.04
timeout-minutes: 5
outputs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-docusaurus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
pages: write
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup nodejs
uses: smartcontractkit/.github/actions/setup-nodejs@setup-nodejs/v1
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Install citool
Expand All @@ -395,7 +395,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 398 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:398:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
outputs:
latest_chainlink_release_version: ${{ steps.get_latest_version.outputs.latest_version }}
steps:
Expand Down Expand Up @@ -426,7 +426,7 @@
workflow_id: ${{ steps.gen_id.outputs.workflow_id }}
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false

Expand Down Expand Up @@ -612,7 +612,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 615 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:615:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
permissions:
id-token: write
contents: read
Expand All @@ -635,7 +635,7 @@

- name: Checkout the repo
if: ${{ steps.check-image-exists.outputs.exists != 'true' }}
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false
ref: ${{ inputs.chainlink_version }}
Expand Down Expand Up @@ -665,7 +665,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 668 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:668:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
permissions:
id-token: write
contents: read
Expand All @@ -679,7 +679,7 @@
}}
steps:
- name: Checkout the repo
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false
ref: ${{ inputs.chainlink_version }}
Expand Down Expand Up @@ -716,7 +716,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 719 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:719:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
permissions:
actions: read
checks: write
Expand Down Expand Up @@ -746,7 +746,7 @@
uses: smartcontractkit/.github/actions/free-disk-space@free-disk-space/v1

- name: Checkout repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false
ref: ${{ inputs.chainlink_version }}
Expand Down Expand Up @@ -1023,7 +1023,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 1026 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:1026:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
permissions:
actions: read
checks: write
Expand All @@ -1037,7 +1037,7 @@
}}.amazonaws.com/chainlink-tests
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Build Test Runner Image
Expand Down Expand Up @@ -1084,7 +1084,7 @@
environment:
name: integration
# http://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
deployment: false

Check failure on line 1087 in .github/workflows/run-e2e-tests.yml

View workflow job for this annotation

GitHub Actions / ci-lint-misc

[actionlint] reported by reviewdog 🐶 unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check] Raw Output: e:.github/workflows/run-e2e-tests.yml:1087:7: unexpected key "deployment" for "environment" section. expected one of "name", "url" [syntax-check]
permissions:
actions: read
checks: write
Expand Down Expand Up @@ -1114,7 +1114,7 @@
uses: smartcontractkit/.github/actions/free-disk-space@free-disk-space/v1

- name: Checkout repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false

Expand Down Expand Up @@ -1316,7 +1316,7 @@
uses: smartcontractkit/.github/actions/free-disk-space@free-disk-space/v1

- name: Checkout repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
actions: read
steps:
- name: Checkout repo (needed to reference local action)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-postgres-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
want_shared_buffers: "128MB"
want_fsync: "off"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/solidity-review-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout the caller repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
needs: [gather-basic-info]
steps:
- name: Checkout the caller repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
ref: ${{ env.head_ref }}
persist-credentials: false
Expand Down Expand Up @@ -308,14 +308,14 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout caller repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
fetch-depth: 0
ref: ${{ env.head_ref }}
persist-credentials: false

- name: Checkout .github repository
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
repository: smartcontractkit/.github
ref: 65249c7eae628aad6e70a0c0850d981cd0074bf9
Expand Down Expand Up @@ -472,14 +472,14 @@ jobs:

- name: Checkout caller repository
if: ${{ inputs.link_with_jira == true }}
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
ref: ${{ env.head_ref }}
persist-credentials: false

- name: Checkout chainlink-github-actions repository
if: ${{ inputs.link_with_jira == true }}
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.0
with:
repository: smartcontractkit/.github
ref: 65249c7eae628aad6e70a0c0850d981cd0074bf9
Expand Down
2 changes: 1 addition & 1 deletion actions/beholder-pulumi-deploy-schema/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Docker login to ECR
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion actions/bump-mcms-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
using: "composite"
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Resolve latest tag
id: latest
Expand Down
2 changes: 1 addition & 1 deletion actions/chip-schema-registration/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Login to ECR
uses: aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
Expand Down
2 changes: 1 addition & 1 deletion actions/ci-beholder-validator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
using: composite
steps:
- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}

Expand Down
2 changes: 1 addition & 1 deletion actions/ci-benchmarking/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
using: "composite"
steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Go Environment
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion actions/ci-kubeconform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
steps:
- name: Checkout repo
if: inputs.checkout-repo == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}

Expand Down
2 changes: 1 addition & 1 deletion actions/ci-lint-charts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
steps:
- name: Checkout repo
if: inputs.checkout-repo == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}

Expand Down
2 changes: 1 addition & 1 deletion actions/ci-lint-go/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ runs:
steps:
- name: Checkout repo
if: inputs.checkout-repo == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}

Expand Down
Loading
Loading