Skip to content

Commit aba8963

Browse files
[#patch](deps): Bump the actions-deps group with 2 updates (#306)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ec4f41b commit aba8963

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/pulumi-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
python-version: ${{ inputs.python-version }}
7575

7676
# ----- Poetry -----
77-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
77+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7878
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
7979
with:
8080
path: ~/.local/bin/
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
enable-cache: true
9595
- id: cache-deps
96-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
96+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9797
with:
9898
path: |
9999
${{ inputs.working-directory }}/.venv
@@ -110,7 +110,7 @@ jobs:
110110
# kics-scan ignore-line
111111
requested-token-type: urn:pulumi:token-type:access_token:personal
112112
scope: user:notdodo
113-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
113+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
114114
with:
115115
path: ${{ env.PULUMI_HOME }}/plugins
116116
key: python-${{ inputs.python-version }}-venv-${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory), format('{0}/uv.lock', inputs.working-directory)) }}

.github/workflows/pulumi-up.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python-version: ${{ inputs.python-version }}
7474

7575
# ----- Poetry -----
76-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
76+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7777
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
7878
with:
7979
path: ~/.local/bin/
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
enable-cache: true
9494
- id: cache-deps
95-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
95+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9696
with:
9797
path: |
9898
${{ inputs.working-directory }}/.venv
@@ -109,7 +109,7 @@ jobs:
109109
# kics-scan ignore-line
110110
requested-token-type: urn:pulumi:token-type:access_token:personal
111111
scope: user:notdodo
112-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
112+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
113113
with:
114114
path: ${{ env.PULUMI_HOME }}/plugins
115115
key: python-${{ inputs.python-version }}-venv-${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory), format('{0}/uv.lock', inputs.working-directory)) }}

.github/workflows/python-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
python-version: ${{ inputs.python-version }}
5353

5454
# ----- Poetry -----
55-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
55+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5656
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
5757
with:
5858
path: ~/.local/bin/
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
enable-cache: true
7373
- id: cache-deps
74-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
74+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7575
with:
7676
path: |
7777
${{ inputs.working-directory }}/.venv
@@ -83,7 +83,7 @@ jobs:
8383
- run: uv sync --locked --all-extras --dev
8484
if: ${{ steps.cache-deps.outputs.cache-hit != 'true' && hashFiles(format('{0}/uv.lock', inputs.working-directory)) != '' }}
8585
- name: Install Task
86-
uses: go-task/setup-task@0ab1b2a65bc55236a3bc64cde78f80e20e8885c2 # v1.0.0
86+
uses: go-task/setup-task@3be4020d41929789a01026e0e427a4321ce0ad44 # v2.0.0
8787
with:
8888
repo-token: ${{ github.token }}
8989
- name: Linting

.github/workflows/terraform-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- run: |
6969
echo "plugin_cache_dir = '$HOME/.terraform.d/plugin-cache'" > ~/.terraformrc
7070
mkdir -p ~/.terraform.d/plugin-cache
71-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
71+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7272
with:
7373
path: ~/.terraform.d/plugin-cache
7474
key: terraform-providers-${{ hashFiles('**/.terraform.lock.hcl') }}
@@ -155,7 +155,7 @@ jobs:
155155
- run: |
156156
echo "plugin_cache_dir = '$HOME/.terraform.d/plugin-cache'" > ~/.terraformrc
157157
mkdir -p ~/.terraform.d/plugin-cache
158-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
158+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
159159
with:
160160
path: ~/.terraform.d/plugin-cache
161161
key: terraform-providers-${{ hashFiles('**/.terraform.lock.hcl') }}

0 commit comments

Comments
 (0)