Skip to content

Commit b5cf8d6

Browse files
committed
Configure Dependabot to update deps in compoite actions
1 parent a9d5168 commit b5cf8d6

7 files changed

Lines changed: 69 additions & 22 deletions

File tree

.github/actions/rl-scanner/action.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ inputs:
99
description: 'Version of the artifact.'
1010
required: true
1111

12-
1312
runs:
1413
using: 'composite'
1514
steps:
@@ -24,7 +23,7 @@ runs:
2423
pip install boto3 requests
2524
2625
- name: Configure AWS credentials
27-
uses: aws-actions/configure-aws-credentials@v1
26+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 // pin@v4.1.0
2827
with:
2928
role-to-assume: ${{ env.PRODSEC_TOOLS_ARN }}
3029
aws-region: 'us-east-1'
@@ -68,6 +67,6 @@ runs:
6867
fi
6968
7069
outputs:
71-
scan-status:
72-
description: 'The outcome of the scan process.'
73-
value: ${{ env.scan-status }}
70+
scan-status:
71+
description: 'The outcome of the scan process.'
72+
value: ${{ env.scan-status }}

.github/actions/setup-android/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ runs:
2323

2424
steps:
2525
- name: Install Flutter
26-
uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa
26+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
2727
with:
28-
flutter-version: ${{ inputs.flutter }}
29-
channel: stable
30-
cache: true
28+
flutter-version: ${{ inputs.flutter }}
29+
channel: stable
30+
cache: true
3131

3232
- name: Install Flutter dependencies
3333
working-directory: auth0_flutter/example

.github/actions/setup-darwin/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
working-directory: auth0_flutter/example/${{ steps.lowercase-platform.outputs.platform }}
4545

4646
- name: Install Flutter
47-
uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa
47+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
4848
with:
4949
flutter-version: ${{ inputs.flutter }}
5050
channel: stable
@@ -65,7 +65,7 @@ runs:
6565

6666
- id: restore-pods-cache
6767
name: Restore Pods cache
68-
uses: actions/cache@f5ce41475b483ad7581884324a6eca9f48f8dcc7
68+
uses: actions/cache@v4
6969
with:
7070
path: auth0_flutter/example/${{ steps.lowercase-platform.outputs.platform }}/Pods
7171
key: pods-${{ hashFiles('Podfile.lock') }}-${{ hashFiles('.xcode-version') }}-v1

.github/actions/setup-publish/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ runs:
1515

1616
steps:
1717
- name: Install Flutter
18-
uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa
18+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
1919
with:
20-
flutter-version: ${{ inputs.flutter }}
21-
channel: stable
22-
cache: true
20+
flutter-version: ${{ inputs.flutter }}
21+
channel: stable
22+
cache: true
2323

2424
- name: Install Flutter dependencies
2525
working-directory: ${{ inputs.working-directory }}
2626
run: flutter pub get
2727
shell: bash
2828

2929
- name: Setup Dart SDK for publishing # With JWT token
30-
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
30+
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c // pin@v1.7.1

.github/dependabot.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,51 @@ updates:
4141
labels:
4242
- ignore title check
4343
- dependencies
44+
45+
- package-ecosystem: github-actions
46+
directory: /.github/actions/rl-scanner
47+
schedule:
48+
interval: daily
49+
labels:
50+
- ignore title check
51+
- dependencies
52+
53+
- package-ecosystem: github-actions
54+
directory: /.github/actions/setup-android
55+
schedule:
56+
interval: daily
57+
labels:
58+
- ignore title check
59+
- dependencies
60+
61+
- package-ecosystem: github-actions
62+
directory: /.github/actions/setup-darwin
63+
schedule:
64+
interval: daily
65+
labels:
66+
- ignore title check
67+
- dependencies
68+
69+
- package-ecosystem: github-actions
70+
directory: /.github/actions/setup-publish
71+
schedule:
72+
interval: daily
73+
labels:
74+
- ignore title check
75+
- dependencies
76+
77+
- package-ecosystem: github-actions
78+
directory: /.github/actions/smoke-tests-darwin
79+
schedule:
80+
interval: daily
81+
labels:
82+
- ignore title check
83+
- dependencies
84+
85+
- package-ecosystem: github-actions
86+
directory: /.github/actions/unit-tests-darwin
87+
schedule:
88+
interval: daily
89+
labels:
90+
- ignore title check
91+
- dependencies

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
3030

3131
- name: Install Flutter
32-
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
32+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
3333
with:
3434
flutter-version: ${{ env.flutter }}
3535
channel: stable
@@ -52,7 +52,7 @@ jobs:
5252
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
5353

5454
- name: Install Flutter
55-
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
55+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
5656
with:
5757
flutter-version: ${{ env.flutter }}
5858
channel: stable
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
7272

7373
- name: Install Flutter
74-
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
74+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
7575
with:
7676
flutter-version: ${{ env.flutter }}
7777
channel: stable
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
103103

104104
- name: Install Flutter
105-
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
105+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
106106
with:
107107
flutter-version: ${{ env.flutter }}
108108
channel: stable
@@ -329,7 +329,7 @@ jobs:
329329
# uses: gradle/gradle-build-action@ef76a971e2fa3f867b617efd72f2fbd72cf6f8bc
330330

331331
# - name: AVD cache
332-
# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
332+
# uses: actions/cache@v4
333333
# id: avd-cache
334334
# with:
335335
# path: |

.github/workflows/rl-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
ref: ${{ github.event.pull_request.head.sha || github.sha || github.ref }}
4141

4242
- name: Set up Flutter
43-
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
43+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff // pin@v2.18.0
4444
with:
4545
flutter-version: ${{ inputs.flutter }}
4646
channel: stable

0 commit comments

Comments
 (0)