Skip to content

Commit ef7a16d

Browse files
Merge branch 'master' into update-codecov-egress
2 parents 7f81fe0 + f59d76e commit ef7a16d

File tree

108 files changed

+473
-244
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+473
-244
lines changed

.github/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Config file to auto-generate release notes based on
67
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes

.github/workflows/_build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to build the project for a specific os
67
# and Python version.
@@ -43,7 +44,7 @@ jobs:
4344
fetch-depth: 0 # IMPORTANT: otherwise the current tag does not get fetched and the build version gets worse
4445

4546
- name: Set up Python ${{ inputs.python-version }}
46-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
47+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
4748
with:
4849
python-version: ${{ inputs.python-version }}
4950

.github/workflows/_build_doc.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to build documentation.
67
#
@@ -33,7 +34,7 @@ jobs:
3334
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3435

3536
- name: Set up Python ${{ inputs.python-version }}
36-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
37+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3738
with:
3839
python-version: ${{ inputs.python-version }}
3940

.github/workflows/_codecov.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to build the project for a specific os
67
# and Python version, run the tests and upload the results to codecov.
@@ -56,7 +57,7 @@ jobs:
5657
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5758

5859
- name: Set up Python ${{ inputs.python-version }}
59-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
60+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
6061
with:
6162
python-version: ${{ inputs.python-version }}
6263

.github/workflows/_codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
54+
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
5555
with:
5656
languages: python
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
- name: Autobuild
67-
uses: github/codeql-action/autobuild@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
67+
uses: github/codeql-action/autobuild@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -77,6 +77,6 @@ jobs:
7777
# ./location_of_script_within_repo/buildscript.sh
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/analyze@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
80+
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
8181
with:
8282
category: "/language:python"

.github/workflows/_pre_commit.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to run pre-commit.
67
#
@@ -30,7 +31,7 @@ jobs:
3031
pypi.org:443
3132
registry.npmjs.org:443
3233
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33-
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
34+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3435
with:
3536
python-version: "3.11"
3637
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1

.github/workflows/_pypi_publish.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to build the project and publish
67
# the package to PyPI.

.github/workflows/_pypi_test_publish.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2024 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to build the project and publish
67
# the package to test PyPI.

.github/workflows/_test_futures_private.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to test the private Futures endpoints
67
# of the python-kraken-sdk.
@@ -60,7 +61,7 @@ jobs:
6061
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6162

6263
- name: Set up Python ${{ inputs.python-version }}
63-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
64+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
6465
with:
6566
python-version: ${{ inputs.python-version }}
6667

.github/workflows/_test_futures_public.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# -*- coding: utf-8 -*-
1+
# -*- mode: yaml; coding: utf-8 -*-
22
# Copyright (C) 2023 Benjamin Thomas Schwertfeger
3-
# GitHub: https://github.com/btschwertfeger
3+
# All rights reserved.
4+
# https://github.com/btschwertfeger
45
#
56
# Template workflow to test the public Futures endpoints
67
# of the python-kraken-sdk.
@@ -46,7 +47,7 @@ jobs:
4647
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4748

4849
- name: Set up Python ${{ inputs.python-version }}
49-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
50+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
5051
with:
5152
python-version: ${{ inputs.python-version }}
5253

0 commit comments

Comments
 (0)