Skip to content

Commit b35cf6b

Browse files
Bump the actions group in /.github/workflows with 4 updates (#477)
Bumps the actions group in /.github/workflows with 4 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action), [actions/stale](https://github.com/actions/stale) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@1af3b93...8e8c483) Updates `github/codeql-action` from 4.31.5 to 4.31.7 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@fdbfb4d...cf1bb45) Updates `actions/stale` from 10.1.0 to 10.1.1 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@5f858e3...9971854) Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@e797f83...83679a8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/stale dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 07c26e7 commit b35cf6b

13 files changed

+26
-26
lines changed

.github/workflows/codeql.yml

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

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0
19+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 #v6.0.1
2020
with:
2121
# We must fetch at least the immediate parents so that if this is
2222
# a pull request then we can checkout the head.
2323
fetch-depth: 2
2424

2525
# Initializes the CodeQL tools for scanning.
2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@fdbfb4d2750291e159f0156def62b853c2798ca2 #v3.29.5
27+
uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412 #v3.29.5
2828
# Override language selection by uncommenting this and choosing your languages
2929
# with:
3030
# languages: go, javascript, csharp, python, cpp, java
3131

3232
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3333
# If this step fails, then you should remove it and run the build manually (see below)
3434
- name: Autobuild
35-
uses: github/codeql-action/autobuild@fdbfb4d2750291e159f0156def62b853c2798ca2 #v3.29.5
35+
uses: github/codeql-action/autobuild@cf1bb45a277cb3c205638b2cd5c984db1c46a412 #v3.29.5
3636

3737
# ℹ️ Command-line programs to run using the OS shell.
3838
# 📚 https://git.io/JvXDl
@@ -46,4 +46,4 @@ jobs:
4646
# make release
4747

4848
- name: Perform CodeQL Analysis
49-
uses: github/codeql-action/analyze@fdbfb4d2750291e159f0156def62b853c2798ca2 #v3.29.5
49+
uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 #v3.29.5

.github/workflows/defaultLabels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:
16-
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
16+
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
1717
name: Setting issue as idle
1818
with:
1919
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -24,7 +24,7 @@ jobs:
2424
operations-per-run: 100
2525
exempt-issue-labels: 'backlog'
2626

27-
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
27+
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
2828
name: Setting PR as idle
2929
with:
3030
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/prettify-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repository
13-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
13+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1414
- name: install deps
1515
run: npm install
1616

.github/workflows/run-integration-tests-basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Create namespace to run tests
4747
run: kubectl create ns ${{ env.NAMESPACE }}
4848

49-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
49+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
5050
name: Install Python
5151
with:
5252
python-version: '3.x'

.github/workflows/run-integration-tests-bluegreen-ingress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Create namespace to run tests
4747
run: kubectl create ns ${{ env.NAMESPACE }}
4848

49-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
49+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
5050
name: Install Python
5151
with:
5252
python-version: '3.x'

.github/workflows/run-integration-tests-bluegreen-service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Create namespace to run tests
4747
run: kubectl create ns ${{ env.NAMESPACE }}
4848

49-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
49+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
5050
name: Install Python
5151
with:
5252
python-version: '3.x'

.github/workflows/run-integration-tests-bluegreen-smi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -57,7 +57,7 @@ jobs:
5757
- name: Create namespace to run tests
5858
run: kubectl create ns ${{ env.NAMESPACE }}
5959

60-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
60+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
6161
name: Install Python
6262
with:
6363
python-version: '3.x'

.github/workflows/run-integration-tests-canary-pod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Create namespace to run tests
4747
run: kubectl create ns ${{ env.NAMESPACE }}
4848

49-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
49+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
5050
name: Install Python
5151
with:
5252
python-version: '3.x'

.github/workflows/run-integration-tests-canary-smi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
KUBECONFIG: /home/runner/.kube/config
1919
NAMESPACE: test-${{ github.run_id }}
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222

2323
- name: Install dependencies
2424
run: |
@@ -57,7 +57,7 @@ jobs:
5757
- name: Create namespace to run tests
5858
run: kubectl create ns ${{ env.NAMESPACE }}
5959

60-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
60+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
6161
name: Install Python
6262
with:
6363
python-version: '3.x'

.github/workflows/run-integration-tests-namespace-optional.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
NAMESPACE1: integration-test-namespace1-${{ github.run_id }}
2222
NAMESPACE2: integration-test-namespace2-${{ github.run_id }}
2323
steps:
24-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
24+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525

2626
- name: Install dependencies
2727
run: |
@@ -52,7 +52,7 @@ jobs:
5252
kubectl create ns ${{ env.NAMESPACE2 }}
5353
kubectl create ns test-namespace
5454
55-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
55+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
5656
name: Install Python
5757
with:
5858
python-version: '3.x'

0 commit comments

Comments
 (0)