Skip to content

Commit 5218eb3

Browse files
authored
chore: node24 partial action updates (#1458)
* chore: bump to actions/checkout v6 * chore: bump to actions/cache v5 * chore: bump to actions/upload-artifact v7 * chore: bump to actions/download-artifact v8 * chore: bump to actions/setup-go to v6 * chore: bump to actions/setup-node to v6 * chore: bump to actions/github-script to v8 * chore: bump aws-actions/configure-aws-credentials to v6.0.0 * chore: add changeset * chore: bump pnpm/action-setup to v4.4.0
1 parent e1669c6 commit 5218eb3

57 files changed

Lines changed: 161 additions & 117 deletions

File tree

Some content is hidden

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

.changeset/mighty-apricots-mate.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
"cicd-build-publish-artifacts-go": minor
3+
"ctf-setup-run-tests-environment": minor
4+
"parse-and-mask-test-secrets": minor
5+
"build-push-docker-manifest": minor
6+
"cicd-build-publish-charts": minor
7+
"llm-action-error-reporter": minor
8+
"crib-deploy-environment": minor
9+
"pull-private-ecr-image": minor
10+
"ci-beholder-validator": minor
11+
"k8s-tailscale-connect": minor
12+
"ctf-fetch-aws-secret": minor
13+
"docker-image-patch": minor
14+
"md-confluence-sync": minor
15+
"setup-github-token": minor
16+
"wait-for-workflows": minor
17+
"branch-out-upload": minor
18+
"build-push-docker": minor
19+
"promote-image-ecr": minor
20+
"ecr-image-exists": minor
21+
"pr-quality-check": minor
22+
"ci-benchmarking": minor
23+
"ci-sonarqube-go": minor
24+
"ci-sonarqube-ts": minor
25+
"cicd-changesets": minor
26+
"ctf-build-image": minor
27+
"ctf-build-tests": minor
28+
"setup-nix-cache": minor
29+
"ci-kubeconform": minor
30+
"oci-image-bump": minor
31+
"update-actions": minor
32+
"ctf-run-tests": minor
33+
"ctf-setup-go": minor
34+
"do-not-merge": minor
35+
"setup-golang": minor
36+
"setup-nodejs": minor
37+
"ci-lint-go": minor
38+
"ci-lint-ts": minor
39+
"ci-test-go": minor
40+
"ci-test-ts": minor
41+
"setup-gap": minor
42+
---
43+
44+
chore: bump many reusable action dependencies for node24 support/migration

actions/beholder-pulumi-deploy-schema/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
runs:
2525
using: "composite"
2626
steps:
27-
- uses: actions/checkout@v4.2.1
27+
- uses: actions/checkout@v6
2828

2929
- name: Docker login to ECR
3030
shell: bash

actions/branch-out-upload/action.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ runs:
126126
run: |
127127
set -o pipefail
128128
read -r -a GO_TEST_ARGS_ARRAY <<< "${GO_TEST_ARGS}"
129-
COMMAND=(
130-
gotestsum
131-
--format standard-quiet
132-
--hide-summary skipped
133-
--junitfile "$JUNIT_FILE_PATH"
134-
--
135-
"${GO_TEST_ARGS_ARRAY[@]}"
136-
)
137-
echo "Running command: ${COMMAND[*]}"
129+
COMMAND=(
130+
gotestsum
131+
--format standard-quiet
132+
--hide-summary skipped
133+
--junitfile "$JUNIT_FILE_PATH"
134+
--
135+
"${GO_TEST_ARGS_ARRAY[@]}"
136+
)
137+
echo "Running command: ${COMMAND[*]}"
138138
"${COMMAND[@]}"
139139
140140
- name: Install JUnit Enhancer (go)
@@ -210,7 +210,7 @@ runs:
210210
211211
- name: Upload test logs as artifact
212212
if: ${{ failure() && steps.inputs-ext.outputs.run-enhancer == 'true' }}
213-
uses: actions/upload-artifact@v5.0.0
213+
uses: actions/upload-artifact@v7
214214
with:
215215
name: individual_test_logs
216216
path: "${{ steps.inputs-ext.outputs.junit-dir }}/raw-test-logs/"

actions/build-push-docker-manifest/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ runs:
169169
version: v0.27.0
170170

171171
- name: Configure AWS credentials
172-
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
172+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
173173
with:
174174
role-to-assume: ${{ inputs.aws-role-arn }}
175175
role-duration-seconds: 900

actions/build-push-docker/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ runs:
202202
if:
203203
${{ steps.dockerfile-ecr-parse.outputs.needs-ecr-login == 'true' ||
204204
inputs.docker-push == 'true' }}
205-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
205+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
206206
with:
207207
role-to-assume: ${{ inputs.aws-role-arn }}
208208
role-duration-seconds: 900

actions/bump-mcms-tools/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
using: "composite"
3737
steps:
3838
- name: Check out
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040

4141
- name: Resolve latest tag
4242
id: latest

actions/chip-schema-registration/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ inputs:
4444
runs:
4545
using: composite
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848

4949
- name: Login to ECR
5050
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1

actions/ci-beholder-validator/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
using: composite
3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v4.2.1
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}
3737

@@ -62,7 +62,7 @@ runs:
6262
docker compose -f "${{ env.ACTIONS_PATH }}/docker-compose.yml" up -d redpanda-console
6363
6464
- name: Configure aws creds
65-
uses: aws-actions/configure-aws-credentials@v4
65+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
6666
with:
6767
role-to-assume: ${{ inputs.aws-role-arn }}
6868
role-duration-seconds: ${{ inputs.aws-role-duration-seconds }}

actions/ci-benchmarking/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ runs:
5353
using: "composite"
5454
steps:
5555
- name: Checkout Code
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757

5858
- name: Setup Go Environment
59-
uses: actions/setup-go@v5
59+
uses: actions/setup-go@v6
6060
with:
6161
go-version: "stable"
6262

@@ -109,7 +109,7 @@ runs:
109109

110110
- name: Download Previous Benchmark Data
111111
if: ${{ env.IS_PR == 'true' || env.IS_MERGE == 'true' }}
112-
uses: actions/cache@v4
112+
uses: actions/cache@v5
113113
with:
114114
path: ./cache
115115
key: ${{ runner.os }}-benchmark
@@ -141,7 +141,7 @@ runs:
141141

142142
- name: Upload Updated Benchmark Data
143143
if: ${{ env.IS_MERGE == 'true' }}
144-
uses: actions/cache@v4
144+
uses: actions/cache@v5
145145
with:
146146
path: ./cache
147147
key: ${{ runner.os }}-benchmark

actions/ci-kubeconform/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ runs:
4545
steps:
4646
- name: Checkout repo
4747
if: inputs.checkout-repo == 'true'
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: ${{ inputs.checkout-repo-fetch-depth }}
5151

5252
- name: Install Go
53-
uses: actions/setup-go@v5
53+
uses: actions/setup-go@v6
5454
with:
5555
go-version-file: ${{ inputs.go-version-file }}
5656

0 commit comments

Comments
 (0)