Skip to content

Commit f2f9ac9

Browse files
dependabot[bot]sevein
authored andcommitted
Bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6.7.0` | `6.8.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `de65e23aa2b7e23d713bb51fbfcb6d502f8667d8` | `2848b2cda0e5190984587ec6bb1f36730ca78d50` | | [docker/login-action](https://github.com/docker/login-action) | `3.5.0` | `3.6.0` | | [actions/cache](https://github.com/actions/cache) | `4.2.4` | `4.3.0` | | [zgosalvez/github-actions-ensure-sha-pinned-actions](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions) | `3.0.25` | `4.0.0` | Updates `astral-sh/setup-uv` from 6.7.0 to 6.8.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@b75a909...d0cc045) Updates `actions/upload-artifact` from de65e23aa2b7e23d713bb51fbfcb6d502f8667d8 to 2848b2cda0e5190984587ec6bb1f36730ca78d50 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@de65e23...2848b2c) Updates `docker/login-action` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@184bdaa...5e57cd1) Updates `actions/cache` from 4.2.4 to 4.3.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) Updates `zgosalvez/github-actions-ensure-sha-pinned-actions` from 3.0.25 to 4.0.0 - [Release notes](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/releases) - [Commits](zgosalvez/github-actions-ensure-sha-pinned-actions@fc87bb5...9e9574e) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: 6.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 2848b2cda0e5190984587ec6bb1f36730ca78d50 dependency-type: direct:production dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: zgosalvez/github-actions-ensure-sha-pinned-actions dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0737552 commit f2f9ac9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
with:
4747
node-version-file: .node-version
4848
- name: Install uv
49-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
49+
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
5050
with:
5151
enable-cache: true
5252
version: latest
5353
- name: Build package
5454
run: uv build
5555
- name: Save distribution directory
56-
uses: actions/upload-artifact@de65e23aa2b7e23d713bb51fbfcb6d502f8667d8 # v4.6.2
56+
uses: actions/upload-artifact@2848b2cda0e5190984587ec6bb1f36730ca78d50 # v4.6.2
5757
with:
5858
# We expect:
5959
# - dist/aipscan-[version].tar.gz
@@ -109,7 +109,7 @@ jobs:
109109
name: dist
110110
path: dist
111111
- name: Login to Docker Hub
112-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
112+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
113113
with:
114114
username: ${{ secrets.DOCKERHUB_USERNAME }}
115115
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
4040
- name: "Cache pip packages"
41-
uses: "actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809" # v4.2.4
41+
uses: "actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830" # v4.3.0
4242
with:
4343
path: "${{ steps.pip-cache.outputs.dir }}"
4444
key: "${{ runner.os }}-pip-${{ hashFiles('**/base.txt', '**/test.txt') }}"

.github/workflows/validate-action-pinning.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
- name: Check out repository
2323
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
- name: Ensure SHA-pinned Actions
25-
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@fc87bb5b5a97953d987372e74478de634726b3e5 # v3.0.25
25+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@9e9574ef04ea69da568d6249bd69539ccc704e74 # v4.0.0

0 commit comments

Comments
 (0)