Skip to content

Commit 9546b3c

Browse files
authored
DEVOPS-2606 - updating GHA Versions (#1448)
2 parents fe6a15a + 325dcac commit 9546b3c

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Cancel previous workflow
36-
uses: styfle/cancel-workflow-action@0.4.0
36+
uses: styfle/cancel-workflow-action@0.12.1
3737
with:
3838
access_token: ${{ github.token }}
3939

@@ -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/team-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ jobs:
44
team-labeler:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: JulienKode/team-labeler-action@v0.1.0
7+
- uses: JulienKode/team-labeler-action@v1.1.0
88
with:
99
repo-token: '${{ secrets.GITHUB_TOKEN }}'

.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)