Skip to content

Commit 66c0884

Browse files
Update GitHub actions (#85)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 842c366 commit 66c0884

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/test-pr-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
echo "Test content for cache" > test-cache/test.txt
1717
1818
- name: Save test cache
19-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
19+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
2020
with:
2121
path: ./test-cache
2222
key: test-cache-${{ github.event.pull_request.number }}

build-gradle/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ runs:
9797

9898
# Configure Gradle for comprehensive caching and build summary reporting. It does not install Gradle.
9999
- name: Configure Gradle
100-
uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2
100+
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # v4.4.4
101101
with:
102102
develocity-injection-enabled: ${{ inputs.use-develocity == 'true' }}
103103
cache-disabled: true

build-poetry/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ runs:
6565
- uses: SonarSource/ci-github-actions/get-build-number@v1
6666
id: get_build_number
6767
- name: Cache local Poetry cache
68-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
68+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6969
with:
7070
path: ${{ github.workspace }}/${{ inputs.poetry-cache-dir }}
7171
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }}

cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ runs:
6161
6262
- name: Cache with GitHub Actions (public repos)
6363
if: steps.repo-visibility.outputs.cache-backend == 'github'
64-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
64+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6565
id: github-cache
6666
with:
6767
path: ${{ inputs.path }}

get-build-number/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
# Reuse current build number in case of rerun
2323
- name: Get cached build number
2424
if: steps.from-env.outputs.skip != 'true'
25-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
25+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
2626
id: current-build-number
2727
with:
2828
path: build_number.txt
@@ -54,7 +54,7 @@ runs:
5454
echo "BUILD_NUMBER=${BUILD_NUMBER}" >> "$GITHUB_OUTPUT"
5555
5656
- name: Save build number to cache
57-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
57+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5858
if: steps.from-env.outputs.skip != 'true' && steps.current-build-number.outputs.cache-hit != 'true'
5959
with:
6060
path: build_number.txt

0 commit comments

Comments
 (0)