Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 736d6a9

Browse files
committed
update GHA versions and adjust update interval
1 parent 2ddaf52 commit 736d6a9

8 files changed

+18
-18
lines changed

.github/dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ updates:
33
- package-ecosystem: "pip"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
groups:
88
pip:
99
patterns: ["*"]
1010
- package-ecosystem: "github-actions"
1111
directory: "/"
1212
schedule:
13-
interval: "weekly"
13+
interval: "monthly"

.github/workflows/bump-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
bump-version:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1111
with:
1212
ref: master
1313

.github/workflows/nodejs-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
node-version: ['18', '20']
1919

2020
steps:
21-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
23+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
cache: 'npm'

.github/workflows/publish.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1515

1616
- name: Setup Python
1717
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
@@ -35,7 +35,7 @@ jobs:
3535
needs: test
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
38+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
- name: Set up Python
4040
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
4141
with:
@@ -54,15 +54,15 @@ jobs:
5454
pip install setuptools wheel twine
5555
python -m setup sdist bdist_wheel
5656
- name: Publish package
57-
uses: pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # v1.10.1
57+
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2
5858
with:
5959
password: ${{ secrets.PYPI_PASSWORD }}
6060

6161
update-brew:
6262
needs: publish-package
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
65+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6666
- name: Set up Python
6767
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
6868
with:
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
needs: update-brew
9090
steps:
91-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
91+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9292
with:
9393
ref: master
9494

.github/workflows/python-dependency-updater.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
python-dependency-updater:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414

1515
- name: Setup Python
1616
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0

.github/workflows/security.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
detect-secrets:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1515
- name: detect secrets
16-
uses: trufflesecurity/trufflehog@5280c3877c038b601658903fb98da62192f436d8 # v3.82.8
16+
uses: trufflesecurity/trufflehog@b715613cb3156d6169b47b3592e35057bd0031bd # v3.83.6
1717
with:
1818
extra_args: "--exclude_paths .github/exclude-patterns.txt --max_depth=1"

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pre-commit:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1717
with:
1818
python-version: '3.8' # needed for 'pyupgrade'
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
timeout-minutes: 15
2525
steps:
26-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
26+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2727

2828
- name: Setup Python
2929
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
5858
steps:
59-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
59+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6060
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
6161
with:
6262
python-version: ${{ matrix.python }}

.github/workflows/update-bundle-report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
update:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414

1515
- name: Setup python
1616
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
@@ -35,7 +35,7 @@ jobs:
3535
make test-js
3636
3737
- name: PR if files were updated
38-
uses: peter-evans/create-pull-request@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7.0.1
38+
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
3939
with:
4040
commit-message: Update JS Bundle and example reports
4141
title: 'Updates JS Bundle and example reports'

0 commit comments

Comments
 (0)