Skip to content

Commit e20f34d

Browse files
authored
Merge pull request #276 from inab/dependabot/github_actions/github-actions-bb399d3c94
Bump the github-actions group across 1 directory with 7 updates
2 parents 565e956 + 9ddf23d commit e20f34d

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/image-publishing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,26 @@ jobs:
2828
#
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
3333
- name: Log in to the Container registry
34-
uses: docker/login-action@v4.1.0
34+
uses: docker/login-action@v4.4.0
3535
with:
3636
registry: ${{ env.REGISTRY }}
3737
username: ${{ github.actor }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
4040
- name: Extract metadata (tags, labels) for Docker
4141
id: meta
42-
uses: docker/metadata-action@v6.0.0
42+
uses: docker/metadata-action@v6.2.0
4343
with:
4444
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4545
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
4646
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
4747
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
4848
- name: Build and push Docker image
4949
id: push
50-
uses: docker/build-push-action@v7.1.0
50+
uses: docker/build-push-action@v7.3.0
5151
with:
5252
context: container_recipes
5353
build-args: |

.github/workflows/pip-audit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.11" ]
1414
name: pip-audit python ${{ matrix.python-version }}
1515
steps:
16-
- uses: actions/checkout@v6
17-
- uses: actions/setup-python@v6
16+
- uses: actions/checkout@v7
17+
- uses: actions/setup-python@v7
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
cache: 'pip'
@@ -89,8 +89,8 @@ jobs:
8989
python-version: [ "3.7" ]
9090
name: pip-audit python ${{ matrix.python-version }}
9191
steps:
92-
- uses: actions/checkout@v6
93-
- uses: actions/setup-python@v6
92+
- uses: actions/checkout@v7
93+
- uses: actions/setup-python@v7
9494
with:
9595
python-version: ${{ matrix.python-version }}
9696
cache: 'pip'
@@ -165,7 +165,7 @@ jobs:
165165
- name: Get analysis timestamp
166166
id: timestamp
167167
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
168-
- uses: actions/checkout@v6
168+
- uses: actions/checkout@v7
169169
- uses: actions/download-artifact@v8
170170
id: download
171171
with:

.github/workflows/pre-commit.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.11" ]
1616
name: Pre-commit python ${{ matrix.python-version }}
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
fetch-depth: 100
21-
- uses: actions/setup-python@v6
21+
- uses: actions/setup-python@v7
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
cache: 'pip'
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed
6060
- name: MyPy cache
61-
uses: actions/cache@v5
61+
uses: actions/cache@v6
6262
with:
6363
path: '.mypy_cache/[0-9]*'
6464
key: mypy-${{ matrix.python-version }}
@@ -104,10 +104,10 @@ jobs:
104104
python-version: [ "3.7" ]
105105
name: Pre-commit python ${{ matrix.python-version }}
106106
steps:
107-
- uses: actions/checkout@v6
107+
- uses: actions/checkout@v7
108108
with:
109109
fetch-depth: 100
110-
- uses: actions/setup-python@v6
110+
- uses: actions/setup-python@v7
111111
with:
112112
python-version: ${{ matrix.python-version }}
113113
cache: 'pip'
@@ -141,7 +141,7 @@ jobs:
141141
- run: |
142142
pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed
143143
- name: MyPy cache
144-
uses: actions/cache@v5
144+
uses: actions/cache@v6
145145
with:
146146
path: '.mypy_cache/[0-9]*'
147147
key: mypy-${{ matrix.python-version }}
@@ -192,7 +192,7 @@ jobs:
192192
- name: Get analysis timestamp
193193
id: timestamp
194194
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
195-
- uses: actions/checkout@v6
195+
- uses: actions/checkout@v7
196196
- uses: actions/download-artifact@v8
197197
id: download
198198
with:

.github/workflows/update-documented-wfexs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Documentation branch checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616
with:
1717
ref: readthedocs_merge
1818
- name: Write requirement

.github/workflows/zenodo-publishing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# This step is not needed at the moment but I might decide to add more steps in the future
1414
- name: Set up Node.js
15-
uses: actions/setup-node@v6
15+
uses: actions/setup-node@v7
1616
with:
1717
node-version: 16
1818

0 commit comments

Comments
 (0)