Skip to content

Commit 95b5f8c

Browse files
authored
Merge pull request #1366 from newrelic/update-ci-action-versions
Update All GitHub Action Versions
2 parents 68da5b7 + 77c7b94 commit 95b5f8c

File tree

7 files changed

+74
-67
lines changed

7 files changed

+74
-67
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,10 @@ updates:
3434
schedule:
3535
interval: "weekly"
3636
open-pull-requests-limit: 1
37+
groups:
38+
cibuildwheel:
39+
patterns:
40+
- "pypa/cibuildwheel*"
41+
other:
42+
patterns:
43+
- "*"

.github/workflows/addlicense.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
permissions:
3737
contents: read
3838
steps:
39-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
39+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
4040

4141
- name: Fetch git tags
4242
run: |

.github/workflows/build-ci-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
runs-on: ubuntu-24.04
2727

2828
steps:
29-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
29+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
3030
with:
3131
persist-credentials: false
3232
fetch-depth: 0
3333

3434
- name: Set up Docker Buildx
3535
id: buildx
36-
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # 3.3.0
36+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # 3.10.0
3737

3838
- name: Generate Docker Metadata (Tags and Labels)
3939
id: meta
40-
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # 5.5.1
40+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # 5.7.0
4141
with:
4242
images: ghcr.io/${{ github.repository }}-ci
4343
flavor: |
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Login to GitHub Container Registry
5454
if: github.event_name != 'pull_request'
55-
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # 3.1.0
55+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
5656
with:
5757
registry: ghcr.io
5858
username: ${{ github.repository_owner }}

.github/workflows/deploy-python.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
- cp37-musllinux
3131

3232
steps:
33-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
33+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
3434
with:
3535
persist-credentials: false
3636
fetch-depth: 0
3737

3838
- name: Setup QEMU
39-
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # 3.3.0
39+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # 3.6.0
4040

4141
- name: Build Wheels
4242
uses: pypa/cibuildwheel@8d945475ac4b1aac4ae08b2fd27db9917158b6ce # 2.17.0
@@ -49,7 +49,7 @@ jobs:
4949
CIBW_TEST_COMMAND: "PYTHONPATH={project}/tests pytest {project}/tests/agent_unittests -vx"
5050

5151
- name: Upload Artifacts
52-
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # 4.3.1
52+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
5353
with:
5454
name: ${{ github.job }}-${{ matrix.wheel }}
5555
path: ./wheelhouse/*.whl
@@ -75,16 +75,16 @@ jobs:
7575
- cp313-musllinux
7676

7777
steps:
78-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
78+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
7979
with:
8080
persist-credentials: false
8181
fetch-depth: 0
8282

8383
- name: Setup QEMU
84-
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # 3.3.0
84+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # 3.6.0
8585

8686
- name: Build Wheels
87-
uses: pypa/cibuildwheel@ee63bf16da6cddfb925f542f2c7b59ad50e93969 # 2.22.0
87+
uses: pypa/cibuildwheel@d04cacbc9866d432033b1d09142936e6a0e2121a # 2.23.2
8888
env:
8989
CIBW_PLATFORM: linux
9090
CIBW_BUILD: "${{ matrix.wheel }}*"
@@ -94,7 +94,7 @@ jobs:
9494
CIBW_TEST_COMMAND: "PYTHONPATH={project}/tests pytest {project}/tests/agent_unittests -vx"
9595

9696
- name: Upload Artifacts
97-
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # 4.3.1
97+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
9898
with:
9999
name: ${{ github.job }}-${{ matrix.wheel }}
100100
path: ./wheelhouse/*.whl
@@ -103,7 +103,7 @@ jobs:
103103
build-sdist:
104104
runs-on: ubuntu-24.04
105105
steps:
106-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
106+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
107107
with:
108108
persist-credentials: false
109109
fetch-depth: 0
@@ -124,7 +124,7 @@ jobs:
124124
openssl md5 -binary "dist/${tarball}" | xxd -p | tr -d '\n' > "dist/${md5_file}"
125125
126126
- name: Upload Artifacts
127-
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # 4.3.1
127+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
128128
with:
129129
name: ${{ github.job }}-sdist
130130
path: |
@@ -141,12 +141,12 @@ jobs:
141141
- build-sdist
142142

143143
steps:
144-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
144+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
145145
with:
146146
persist-credentials: false
147147
fetch-depth: 0
148148

149-
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0
149+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # 5.5.0
150150
with:
151151
python-version: "3.x"
152152
architecture: x64
@@ -157,7 +157,7 @@ jobs:
157157
pip install -U wheel setuptools packaging twine
158158
159159
- name: Download Artifacts
160-
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # 4.1.4
160+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # 4.2.1@95815c38cf2ff2164869cbab79da8d1f422bc89e # 4.2.1
161161
with:
162162
path: ./artifacts/
163163

.github/workflows/mega-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Upload MegaLinter artifacts
7171
- name: Archive production artifacts
7272
if: success() || failure()
73-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # 4.6.1
73+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
7474
with:
7575
name: MegaLinter reports
7676
path: |
@@ -83,7 +83,7 @@ jobs:
8383
run: sudo chown -Rc $UID .git/
8484
- name: Commit and push applied linter fixes
8585
if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'commit' && github.ref != 'refs/heads/main' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && !contains(github.event.head_commit.message, 'skip fix')
86-
uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # 5.1.0
86+
uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # 5.2.0
8787
with:
8888
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
8989
commit_message: "[MegaLinter] Apply linters fixes"

0 commit comments

Comments
 (0)