Skip to content

Commit d2467e2

Browse files
build(deps): bump the actions-updates group across 1 directory with 4 updates (#201)
Bumps the actions-updates group with 4 updates in the / directory: [actions/cache](https://github.com/actions/cache), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `actions/cache` from 5.0.5 to 6.0.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...2c8a9bd) Updates `actions/checkout` from 6.0.2 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@de0fac2...9c091bb) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a309ff8...ece7cb0) Updates `actions/create-github-app-token` from 3.1.1 to 3.2.0 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](actions/create-github-app-token@1b10c78...bcd2ba4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-updates - dependency-name: actions/create-github-app-token dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c16f95b commit d2467e2

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/cache-refresh.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454
egress-policy: audit
5555
- name: restore ccache
5656
id: restore
57-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.2
57+
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2
5858
with:
5959
path: ~/.cache/kernel-ccache
6060
key: "${{ matrix.entry.prefix }}-${{ github.run_id }}"
6161
restore-keys: |
6262
${{ matrix.entry.prefix }}-
6363
- name: save ccache
6464
if: steps.restore.outputs.cache-matched-key != ''
65-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.2
65+
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2
6666
with:
6767
path: ~/.cache/kernel-ccache
6868
key: "${{ matrix.entry.prefix }}-${{ github.run_id }}"

.github/workflows/matrix.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
egress-policy: audit
2626

2727
- name: checkout repository
28-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
28+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
2929
with:
3030
submodules: recursive
3131
- name: install dependencies
@@ -75,7 +75,7 @@ jobs:
7575
egress-policy: audit
7676

7777
- name: checkout repository
78-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
78+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
7979
with:
8080
submodules: recursive
8181
- name: install cosign
@@ -93,7 +93,7 @@ jobs:
9393
username: "${{github.actor}}"
9494
password: "${{secrets.GITHUB_TOKEN}}"
9595
- name: restore ccache
96-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.2
96+
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2
9797
with:
9898
path: ~/.cache/kernel-ccache
9999
# restore-keys is important here - it lets us restore the most recent cache key,
@@ -128,7 +128,7 @@ jobs:
128128
# whose entries the next build can actually restore. PRs still benefit because
129129
# they will fallthrough to/inherit parent branch caches
130130
if: github.ref == 'refs/heads/main'
131-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.2
131+
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v5.0.2
132132
with:
133133
path: ~/.cache/kernel-ccache
134134
# The run_id here is just for write-key uniqueness, as GH doesn't allow overwriting
@@ -159,9 +159,9 @@ jobs:
159159
with:
160160
egress-policy: audit
161161
- name: checkout repository
162-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
162+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
163163
- name: set up Python
164-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
164+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
165165
with:
166166
python-version: '3.13'
167167
- name: install python deps

.github/workflows/refresh-nvidia.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
with:
1818
egress-policy: audit
1919
- name: checkout repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
20+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
2121
- name: scrape upstream and rewrite config.yaml
2222
run: python3 ./hack/build/refresh-nvidia-versions.py
2323
- name: generate cultivator token
24-
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
24+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
2525
id: generate-token
2626
with:
2727
app-id: "${{ secrets.EDERA_CULTIVATION_APP_ID }}"

0 commit comments

Comments
 (0)