Skip to content

Commit 5df2ba4

Browse files
Bump the actions group with 4 updates (#507)
2 parents 95df957 + 7db703f commit 5df2ba4

File tree

6 files changed

+32
-23
lines changed

6 files changed

+32
-23
lines changed

.github/workflows/bump-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
actions: read
3838
steps:
3939
- name: Harden Runner
40-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
40+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
4141
with:
4242
disable-sudo: true
4343
egress-policy: block
@@ -48,17 +48,17 @@ jobs:
4848
pypi.org:443
4949
- name: Generate App Token
5050
id: token_generator
51-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
51+
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
5252
with:
5353
app-id: ${{ secrets.BIRDHOUSE_HELPER_BOT_ID }}
5454
private-key: ${{ secrets.BIRDHOUSE_HELPER_BOT_KEY }}
5555
- name: Checkout Repository
56-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
56+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5757
with:
5858
token: ${{ steps.token_generator.outputs.token }}
5959
persist-credentials: false
6060
- name: Set up Python3
61-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
61+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
6262
with:
6363
python-version: "3.x"
6464
- name: Import GPG Key

.github/workflows/docker-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Harden Runner
23-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
23+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2424
with:
2525
disable-sudo: true
2626
egress-policy: block
@@ -33,7 +33,7 @@ jobs:
3333
pypi.org:443
3434
registry-1.docker.io:443
3535
- name: Checkout Repository
36-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
36+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3737
- name: Set up Docker Buildx
3838
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
3939
- name: Build Docker image (no push)

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
pull-requests: write
2828
steps:
2929
- name: Harden Runner
30-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
30+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
3131
with:
3232
disable-sudo: true
3333
egress-policy: block

.github/workflows/main.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,22 @@ jobs:
1818
lint:
1919
name: Code linting
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
python-version: [ "3.13" ]
2124
steps:
2225
- name: Harden Runner
23-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
26+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2427
with:
2528
egress-policy: audit
2629
- name: Checkout Repository
27-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2831
with:
2932
persist-credentials: false
3033
- name: Set up Python${{ matrix.python-version }}
31-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
34+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3235
with:
33-
python-version: "3.x"
36+
python-version: ${{ matrix.python-version }}
3437
cache: pip
3538
- name: Install CI libraries
3639
run: |
@@ -53,11 +56,11 @@ jobs:
5356
python-version: [ "3.10", "3.11", "3.12" ]
5457
steps:
5558
- name: Harden Runner
56-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
59+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
5760
with:
5861
egress-policy: audit
5962
- name: Checkout Repository
60-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
63+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6164
with:
6265
persist-credentials: false
6366
- name: Setup Conda (Micromamba) with Python${{ matrix.python-version }}

.github/workflows/publish-pypi.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ jobs:
1616
# IMPORTANT: this permission is mandatory for trusted publishing
1717
id-token: write
1818
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
python-version: [ "3.13" ]
1922
steps:
2023
- name: Harden Runner
21-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
24+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2225
with:
2326
disable-sudo: true
2427
egress-policy: block
@@ -29,13 +32,13 @@ jobs:
2932
ruf-repo-cdn.sigstore.dev:443
3033
upload.pypi.org:443
3134
- name: Checkout Repository
32-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
35+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3336
with:
3437
persist-credentials: false
35-
- name: Set up Python3
36-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
38+
- name: Set up Python${{ matrix.python-version }}
39+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3740
with:
38-
python-version: "3.x"
41+
python-version: ${{ matrix.python-version }}
3942
- name: Install CI libraries
4043
run: |
4144
python -m pip install --require-hashes -r CI/requirements_ci.txt

.github/workflows/tag-testpypi.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ jobs:
1616
# IMPORTANT: this permission is mandatory for trusted publishing
1717
id-token: write
1818
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
python-version: [ "3.13" ]
1922
steps:
2023
- name: Harden Runner
21-
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
24+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
2225
with:
2326
disable-sudo: true
2427
egress-policy: block
@@ -29,13 +32,13 @@ jobs:
2932
ruf-repo-cdn.sigstore.dev:443
3033
test.pypi.org:443
3134
- name: Checkout Repository
32-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
35+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3336
with:
3437
persist-credentials: false
35-
- name: Set up Python3
36-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
38+
- name: Set up Python${{ matrix.python-version }}
39+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3740
with:
38-
python-version: "3.x"
41+
python-version: ${{ matrix.python-version }}
3942
- name: Install CI libraries
4043
run: |
4144
python -m pip install --require-hashes -r CI/requirements_ci.txt

0 commit comments

Comments
 (0)