Skip to content

Commit cdd96f1

Browse files
committed
updating GHA Versions
1 parent 65089f2 commit cdd96f1

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

15-
- uses: actions/setup-python@v3
15+
- uses: actions/setup-python@v5
1616
with:
1717
python-version: '3.x'
1818

@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
python setup.py sdist bdist_wheel
2727
28-
- uses: actions/upload-artifact@v3
28+
- uses: actions/upload-artifact@v4
2929
with:
3030
path: ./dist
3131

@@ -39,7 +39,7 @@ jobs:
3939
# IMPORTANT: this permission is mandatory for trusted publishing
4040
id-token: write
4141
steps:
42-
- uses: actions/download-artifact@v3
42+
- uses: actions/download-artifact@v4
4343

4444
- name: Publish package distributions to PyPI
4545
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
echo "FIXTURE_PROFILE=true" >> $GITHUB_ENV
4747
fi
4848
49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v4
5050
with:
5151
token: ${{ secrets.ACTIONS_ACCESS_TOKEN }}
5252
ref: ${{ github.head_ref }}
5353

5454
- name: Set up Python ${{ matrix.python-version }}
55-
uses: actions/setup-python@v2
55+
uses: actions/setup-python@v5
5656
with:
5757
python-version: ${{ matrix.python-version }}
5858

.github/workflows/release-container.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
echo "CONTAINER_IMAGE=${CONTAINER_IMAGE,,}" >> ${GITHUB_ENV}
2020
2121
- name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v2
22+
uses: docker/setup-buildx-action@v3
2323

2424
- name: Log in to the Container registry
25-
uses: docker/login-action@v2
25+
uses: docker/login-action@v3
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
2929
password: ${{ secrets.GITHUB_TOKEN }}
3030

3131
- name: Build and push
32-
uses: docker/build-push-action@v4
32+
uses: docker/build-push-action@v5
3333
with:
3434
github-token: ${{ secrets.GITHUB_TOKEN }}
3535
push: true

.github/workflows/testing-container.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
echo "CONTAINER_IMAGE=${CONTAINER_IMAGE,,}" >> ${GITHUB_ENV}
2121
2222
- name: Set up Docker Buildx
23-
uses: docker/setup-buildx-action@v2
23+
uses: docker/setup-buildx-action@v3
2424

2525
- name: Log in to the Container registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: ghcr.io
2929
username: ${{ github.actor }}
3030
password: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Build and push
33-
uses: docker/build-push-action@v4
33+
uses: docker/build-push-action@v5
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
push: true

0 commit comments

Comments
 (0)