Skip to content

Commit b8ab8a9

Browse files
authored
Merge branch 'main' into label-metrics-measurements
2 parents 8815d92 + 8136d81 commit b8ab8a9

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
17+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1818
- name: Build the Docker image
1919
run: docker build . --file Dockerfile --platform linux/amd64 --tag issue-metrics:"$(date +%s)"

.github/workflows/linter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
21+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2222
with:
2323
# Full git history is needed to get a proper
2424
# list of changed files within `super-linter`
@@ -28,7 +28,7 @@ jobs:
2828
python -m pip install --upgrade pip
2929
pip install -r requirements.txt -r requirements-test.txt
3030
- name: Lint Code Base
31-
uses: super-linter/super-linter@4758be622215d0954c8353ee4877ffd60111cf8e
31+
uses: super-linter/super-linter@56576d491db07c7236b445ab09991ca49d12b0c6
3232
env:
3333
DEFAULT_BRANCH: main
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/major-version-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Checkout Repo
18-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
18+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1919

2020
- name: version
2121
id: version

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: [3.11, 3.12]
2323

2424
steps:
25-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
25+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2626
- name: Set up Python ${{ matrix.python-version }}
2727
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
2828
with:

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
- closed
99
branches:
1010
- main
11+
pull_request_target:
12+
types:
13+
- closed
14+
branches:
15+
- main
1116

1217
permissions:
1318
contents: read
@@ -62,7 +67,7 @@
6267
registry: ${{ env.REGISTRY }}
6368
username: ${{ github.actor }}
6469
password: ${{ secrets.GITHUB_TOKEN }}
65-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
70+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
6671
- name: Push Docker Image
6772
if: ${{ success() }}
6873
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0

.github/workflows/scorecard.yml

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

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
28+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2929
with:
3030
persist-credentials: false
3131

@@ -42,6 +42,6 @@ jobs:
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.24.9
45+
uses: github/codeql-action/upload-sarif@9fdb3e49720b44c48891d036bb502feb25684276 # v3.24.9
4646
with:
4747
sarif_file: results.sarif

requirements-test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ black==24.4.2
22
flake8==7.0.0
33
mypy==1.10.0
44
mypy-extensions==1.0.0
5-
pylint==3.1.1
6-
pytest==8.2.0
5+
pylint==3.2.2
6+
pytest==8.2.1
77
pytest-cov==5.0.0
88
types-pytz==2024.1.0.20240417
99
types-requests==2.31.0.20240406

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ github3.py==4.0.1
22
numpy==1.26.4
33
python-dotenv==1.0.1
44
pytz==2024.1
5-
requests==2.31.0
5+
requests==2.32.0

0 commit comments

Comments
 (0)