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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

- name: Debug
uses: raven-actions/debug@9dbdeb7eea607a7d73411895c65987e71d59a466 # v1.2.0
Expand Down Expand Up @@ -321,7 +321,7 @@
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
# We need full history to be able to detect branch ancestry
with:
fetch-depth: 0
Expand Down Expand Up @@ -477,7 +477,7 @@
- name: Create release
if: github.ref_type == 'tag'
# This may fail for workflow_dispatch if the release already exists
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
with:
append_body: true
token: ${{ steps.get-secrets-release.outputs.github-pat }}
Expand Down Expand Up @@ -531,7 +531,7 @@
pull-requests: write
id-token: write
name: Update documentation on release
uses: telemetryforge/documentation/.github/workflows/call-add-mapping-version.yaml@694143c942c2481eb49ccbaa99f9b6c13d25d84e

Check failure on line 534 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

SHA-pinned action requires a version comment for verifiability

Check failure on line 534 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

SHA-pinned action requires a version comment for verifiability
with:
agent-version: ${{ needs.get-meta.outputs.version }}
oss-version: ${{ needs.get-meta.outputs.oss-version }}
12 changes: 9 additions & 3 deletions .github/workflows/call-build-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ on:
required: false
type: string
default: "namespace-profile-ubuntu-latest-arm"
s390x-runner-label:
description: The label to use for the runner (if not specified then the default ubuntu-latest or equivalent is used).
required: false
type: string
default: "ubuntu-24.04-s390x"
secrets:
cosign_private_key:
description: The optional Cosign key to use for signing the images.
Expand Down Expand Up @@ -75,18 +80,19 @@ jobs:
platform:
- amd64
- arm64
- s390x
target:
- production
name: ${{ matrix.platform }}/${{ matrix.target }} container image build
runs-on: ${{ (contains(matrix.platform, 'arm') && inputs.arm-runner-label) || inputs.amd-runner-label }}
runs-on: ${{ (contains(matrix.platform, 'arm') && inputs.arm-runner-label) || (contains(matrix.platform, 's390x') && inputs.s390x-runner-label) || inputs.amd-runner-label }}
steps:
- name: Harden the runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref }}
Expand All @@ -104,7 +110,7 @@ jobs:

# Must be removed on Namespace runners
- name: Set up QEMU
if: ${{ !contains( runner.name, 'nsc-' ) }}
if: ${{ !(contains( runner.name, 'nsc-' ) || contains( matrix.platform, 's390x' )) }}
uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0

- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-build-linux-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout ${{ inputs.ref }} code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ inputs.ref }}
repository: telemetryforge/agent
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/call-build-macos-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout ${{ inputs.ref }} code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ inputs.ref }}
repository: telemetryforge/agent
Expand Down Expand Up @@ -98,6 +98,8 @@ jobs:
-DOPENSSL_USE_STATIC_LIBS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCPACK_GENERATOR=productbuild \
-DTELEMETRY_FORGE_AGENT_DISTRO=${{ matrix.config.runner }} \
-DTELEMETRY_FORGE_AGENT_PACKAGE_TYPE=PACKAGE \
-DFLB_NIGHTLY_BUILD=${{ inputs.nightly-build-info }} ../

cmake --build .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/call-build-windows-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout ${{ inputs.ref }} code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ inputs.ref }}
repository: telemetryforge/agent
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Restore cached packages of vcpkg
id: cache-vcpkg-sources
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
C:\vcpkg\installed
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Save packages of vcpkg
id: save-vcpkg-sources
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
C:\vcpkg\installed
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-test-containers-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref || github.ref }}
Expand All @@ -60,7 +60,7 @@ jobs:
password: ${{ secrets.github-token }}

- name: Set up Helm
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0
uses: azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1
with:
version: v3.19.2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/call-test-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref || github.ref }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref || github.ref }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref || github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-test-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref }}
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ inputs.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cron-auto-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

- name: 25.10 run
if: github.event_name == 'schedule' && github.event.schedule=='0 14 1 * *'
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
secrets: |-
github-pat:projects/626836145334/secrets/GITHUB_CI_PAT

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.find-last-good.outputs.sha }}
# The tag must be pushed using a PAT to ensure workflows then run.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: "Checkout Repository"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: "Dependency Review"
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout for config file
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

- name: Download package
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
# Ignores do not work: https://github.com/reviewdog/action-hadolint/issues/35 is resolved
- uses: reviewdog/action-hadolint@921946a7ebaaf08ac72607bad67209f4e52b5407 # v1.50.5
- uses: reviewdog/action-hadolint@1b2cfa6ba72072ad35158d7ff3aa49bbdc03506d # v1.51.0

shellcheck-pr:
runs-on: ubuntu-latest
Expand All @@ -45,7 +45,7 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: reviewdog/action-shellcheck@4c07458293ac342d477251099501a718ae5ef86e # v1.32.0
Expand All @@ -68,7 +68,7 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- run: |
Expand All @@ -85,7 +85,7 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- run: ./scripts/format-yaml-files.sh
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: suzuki-shunsuke/pinact-action@896d595f299e71d65b9d28349d6956abe144390a # v3.0.0
Expand All @@ -169,12 +169,12 @@ jobs:
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

- name: Run zizmor
uses: zizmorcore/zizmor-action@5f14fd08f7cf1cb1609c1e344975f152c7ee938d # v0.5.6
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
with:
# We only want to scan our workflows, no other included source
input: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-comment-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: refs/pull/${{ github.event.issue.number }}/merge

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
egress-policy: ${{ vars.STEP_SECURITY_EGRESS_POLICY || 'audit' }}

- name: "Checkout code"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false

Expand All @@ -66,6 +66,6 @@ jobs:

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: telemetryforge/agent
ref: ${{ github.event.inputs.ref || github.ref }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event.inputs.ref || github.ref }}

Expand Down Expand Up @@ -120,6 +120,9 @@ jobs:
FLB_BACKTRACE=Off
FLB_SHARED_LIB=Off

TELEMETRY_FORGE_AGENT_DISTRO=ubuntu/latest
TELEMETRY_FORGE_AGENT_PACKAGE_TYPE=PACKAGE

${{ matrix.config.options }}
run-build: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-lts-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -75,7 +75,7 @@
- name: Create a PR with the update
if: ${{ github.event_name != 'workflow_dispatch' || !github.event.inputs.dry-run }}
id: cpr
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1

Check notice on line 78 in .github/workflows/update-lts-branches.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1

Check notice on line 78 in .github/workflows/update-lts-branches.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
commit-message: "ci: update workflows on ${{ matrix.branch }} from main"
signoff: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: ${{ env.STEP_SECURITY_EGRESS_POLICY }}
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0 # Fetch all history including tags

Expand Down Expand Up @@ -177,7 +177,7 @@
- name: Create a PR with the update
if: ${{ github.event_name != 'workflow_dispatch' || !github.event.inputs.dry-run }}
id: cpr
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1

Check notice on line 180 in .github/workflows/update-version.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1

Check notice on line 180 in .github/workflows/update-version.yaml

View workflow job for this annotation

GitHub Actions / PR - Actions Pin SHA

pinact error

uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
commit-message: "ci: update to new version ${{ steps.get-version.outputs.next_tag }}"
signoff: true
Expand Down
Loading