Skip to content

Commit 5480a2a

Browse files
Bump the actions group in /.github/workflows with 4 updates
Bumps the actions group in /.github/workflows with 4 updates: [actions/stale](https://github.com/actions/stale), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actionsx/prettier](https://github.com/actionsx/prettier). Updates `actions/stale` from 3 to 9 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v9) Updates `actions/checkout` from 1 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v5) Updates `actionsx/prettier` from 2 to 3 - [Release notes](https://github.com/actionsx/prettier/releases) - [Commits](actionsx/prettier@v2...v3) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actionsx/prettier dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b5a3638 commit 5480a2a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Diff for: .github/workflows/defaultLabels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
label-issues:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/stale@v3
11+
- uses: actions/stale@v9
1212
name: Setting issue as idle
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -19,7 +19,7 @@ jobs:
1919
operations-per-run: 100
2020
exempt-issue-labels: 'backlog'
2121

22-
- uses: actions/stale@v3
22+
- uses: actions/stale@v9
2323
name: Setting PR as idle
2424
with:
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}

Diff for: .github/workflows/integration-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
KUBECONFIG: /home/runner/.kube/config
1818
PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
name: Checkout from PR branch
2222

2323
- id: action-npm-build
@@ -29,7 +29,7 @@ jobs:
2929
npm run build
3030
fi
3131
32-
- uses: actions/setup-python@v2
32+
- uses: actions/setup-python@v5
3333
name: Install Python
3434
with:
3535
python-version: '3.x'

Diff for: .github/workflows/prettify-code.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Enforce Prettier
16-
uses: actionsx/prettier@v2
16+
uses: actionsx/prettier@v3
1717
with:
1818
args: --check .

Diff for: .github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build: # make sure build/ci works properly
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v4
1717

1818
- name: Build and run L0 tests.
1919
run: |

0 commit comments

Comments
 (0)