Skip to content

Commit 6d26219

Browse files
chore(deps): update github pipeline dependencies
1 parent a9de369 commit 6d26219

12 files changed

+24
-24
lines changed

.github/workflows/create-stable-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout main branch
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
ref: main
1919
fetch-depth: 0

.github/workflows/deploy-checkly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
contents: read
3636

3737
steps:
38-
- uses: actions/setup-node@v4
38+
- uses: actions/setup-node@v6
3939
with:
40-
node-version: 22.x
40+
node-version: 24.x
4141

42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343

4444
- name: Get CortexApiKey secret
4545
id: get_cortex_secret

.github/workflows/github-template-update-downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ jobs:
9696
private-key: ${{ secrets.TERRAFORM_AUTOMATION_PRIVATE_KEY }}
9797

9898
- name: Checkout Template
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100
with:
101101
fetch-depth: 0
102102
path: template
103103

104104
- name: Checkout Downstream
105-
uses: actions/checkout@v5
105+
uses: actions/checkout@v6
106106
with:
107107
repository: workleap/${{ matrix.repo }}
108108
token: ${{ steps.auth.outputs.token }}

.github/workflows/required_checks_policy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
timeout-minutes: ${{ inputs.timeout-minutes }}
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252
with:
5353
fetch-depth: 0
5454
- name: Evaluate required checks policy

.github/workflows/reusable-jira-workflow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262

6363
- name: Test Jira Extraction
6464
id: extract

.github/workflows/reusable-renovate-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
environment: ci
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Get renovate-github-pat secret
3434
id: get_github_secret
@@ -65,9 +65,9 @@ jobs:
6565
version: 10
6666

6767
- name: Use Node.js 22
68-
uses: actions/setup-node@v4
68+
uses: actions/setup-node@v6
6969
with:
70-
node-version: 22
70+
node-version: 24
7171

7272
- name: ${{ inputs.workflow_name }}
7373
shell: bash

.github/workflows/reusable-semgrep-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
steps:
1818
- name: Checkout all commits and tags
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
if: ${{ github.event_name == 'pull_request' }}
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Checkout single commit
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
if: ${{ github.event_name != 'pull_request' }}
2727

2828
- name: Pull request scan
@@ -35,14 +35,14 @@ jobs:
3535

3636
- name: Save report as pipeline artifact
3737
if: ${{ github.event_name != 'pull_request' }}
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: report.sarif
4141
path: report.sarif
4242

4343
- name: Publish code scanning alerts
4444
if: ${{ github.event_name != 'pull_request' }}
45-
uses: github/codeql-action/upload-sarif@v3
45+
uses: github/codeql-action/upload-sarif@v4
4646
with:
4747
sarif_file: report.sarif
4848
category: semgrep

.github/workflows/terraform-auto-doc-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
private-key: ${{ secrets.TERRAFORM_AUTOMATION_PRIVATE_KEY }}
1818

1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}
2323
fetch-depth: ${{ github.event.pull_request.commits }}
2424
token: ${{ steps.auth.outputs.token }}
2525

2626
- name: Detect changed Terraform files
2727
id: detect_tf
28-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
28+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
2929
with:
3030
separator: "\n"
3131
files: |

.github/workflows/terraform-create-git-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
permissions:
1111
contents: write
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
ref: ${{ github.event.pull_request.merge_commit_sha }}
1616
fetch-depth: '0'
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: Detect changed Terraform files
2424
id: detect_tf
25-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
25+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
2626
with:
2727
files: |
2828
**.yml

.github/workflows/terraform-linter-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
app-id: ${{ secrets.TERRAFORM_AUTOMATION_APP_ID }}
1414
private-key: ${{ secrets.TERRAFORM_AUTOMATION_PRIVATE_KEY }}
1515

16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
name: Checkout source code
1818
with:
1919
token: ${{ steps.auth.outputs.token }}
@@ -25,7 +25,7 @@ jobs:
2525
source-ref: main
2626
token: ${{ steps.auth.outputs.token }}
2727

28-
- uses: terraform-linters/setup-tflint@v5
28+
- uses: terraform-linters/setup-tflint@v6
2929
name: Setup TFLint
3030

3131
- name: Show version

0 commit comments

Comments
 (0)