Skip to content

Commit 0183680

Browse files
chore(deps): pin dependencies
1 parent 5ad89b7 commit 0183680

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v6.0.2
2121
- name: Setup node
22-
uses: actions/setup-node@v6
22+
uses: actions/setup-node@v6.3.0
2323
with:
2424
node-version: '24.14.1'
2525
- name: Build docs
2626
run: cd web && yarn install && yarn run build
2727
- name: Commit and push changes
28-
uses: peaceiris/actions-gh-pages@v4
28+
uses: peaceiris/actions-gh-pages@v4.0.0
2929
with:
3030
personal_token: ${{ secrets.PUSH_TOKEN }}
3131
external_repository: 'ACRA/acra.github.com'

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
distribution: 'temurin'
1818
java-version: '17'
1919
- name: Checkout acra
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v6.0.2
2121
with:
2222
ref: ${{ github.ref }}
2323
- name: Publish

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout ACRA
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v6.0.2
2323

2424
- name: Setup Java
2525
uses: actions/setup-java@v5.2.0
@@ -34,7 +34,7 @@ jobs:
3434
sudo udevadm trigger --name-match=kvm
3535
3636
- name: Setup Gradle
37-
uses: gradle/actions/setup-gradle@v6
37+
uses: gradle/actions/setup-gradle@v6.1.0
3838

3939
# - name: "Load AVD from cache. API/Arch ${{ matrix.android.version }}-${{ matrix.android.arch }}"
4040
# uses: actions/cache@v4
@@ -58,7 +58,7 @@ jobs:
5858
# script: echo "Generated AVD snapshot for caching."
5959

6060
- name: "Run tests. API/Arch: ${{ matrix.android.version }}-${{ matrix.android.arch }}"
61-
uses: reactivecircus/android-emulator-runner@v2
61+
uses: reactivecircus/android-emulator-runner@v2.37.0
6262
with:
6363
api-level: ${{ matrix.android.version }}
6464
arch: ${{ matrix.android.arch }}

.github/workflows/upload-javadoc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
distribution: 'temurin'
1818
java-version: '17'
1919
- name: Checkout acra
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v6.0.2
2121
with:
2222
ref: ${{ github.ref }}
2323
- name: Generate Javadoc
@@ -26,7 +26,7 @@ jobs:
2626
id: version
2727
run: echo "::set-output name=value::$(git describe --abbrev=0 | sed -e "s/^acra-//")"
2828
- name: Checkout master
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@v6.0.2
3030
with:
3131
ref: master
3232
clean: false
@@ -38,7 +38,7 @@ jobs:
3838
|| (mkdir ./web/static/javadoc/$VERSION && cp -a ./build/dokka/htmlCollector/. ./web/static/javadoc/$VERSION/)
3939
ln -sfn "$VERSION/" ./web/static/javadoc/latest
4040
- name: Commit and push changes
41-
uses: EndBug/add-and-commit@v10
41+
uses: EndBug/add-and-commit@v10.0.0
4242
with:
4343
add: 'web/static/javadoc'
4444
message: "Add javadoc for version ${{ steps.version.outputs.value }}"

0 commit comments

Comments
 (0)