Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ secrets.CI_GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size.baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
app-id: ${{ secrets.GH_FLUENT_CI_APP_ID }}
private-key: ${{ secrets.GH_FLUENT_CI_PRIVATE_KEY }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ steps.generate-token.outputs.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cocoapods-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Deploy to CocoaPods
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# If you do not check out your code, Copilot will do this for you.
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docsite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
17 changes: 8 additions & 9 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check asset directories are valid for Windows
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
name: Validate Asset Fills
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check that all SVGs have the right fill
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
name: Validate PR Title
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand All @@ -108,11 +108,10 @@ jobs:

# https://github.com/marketplace/actions/gradle-command
- name: Build Android library
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v3
with:
arguments: assembleRelease
build-root-directory: android
wrapper-directory: android

- name: Generate BUILD.gn file for Android
run: python3 generate_build_gn_android.py
Expand All @@ -124,7 +123,7 @@ jobs:
# runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7

# - uses: actions/setup-node@v4
# with:
Expand Down Expand Up @@ -157,7 +156,7 @@ jobs:
actions: 'read'

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
filter: tree:0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
app-id: ${{ secrets.GH_FLUENT_CI_APP_ID }}
private-key: ${{ secrets.GH_FLUENT_CI_PRIVATE_KEY }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ steps.generate-token.outputs.token }}
filter: blob:none
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
app-id: ${{ secrets.GH_FLUENT_CI_APP_ID }}
private-key: ${{ secrets.GH_FLUENT_CI_PRIVATE_KEY }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
token: ${{ steps.generate-token.outputs.token }}
# Git knows file names/paths for history, but blobs (file contents) are fetched on demand.
Expand Down Expand Up @@ -238,16 +238,15 @@ jobs:
# sudo bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'"

- name: Build Android library
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v3
with:
arguments: assembleRelease -DversionName='${{ env.NEW_VERSION }}'
build-root-directory: android
wrapper-directory: android

# Temporarily commenting out the publishing to Maven Central, as it is blocking the release for other platforms
# - name: Publish to Maven Central
# if: ${{ !inputs.dry-run }}
# uses: eskatos/gradle-command-action@v1
# uses: gradle/gradle-build-action@v3
# env:
# OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
# OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
Expand All @@ -259,7 +258,6 @@ jobs:
# with:
# arguments: publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
# build-root-directory: android
# wrapper-directory: android

- name: Generate BUILD.gn file for Android
run: python3 generate_build_gn_android.py
Expand Down Expand Up @@ -345,7 +343,7 @@ jobs:
# needs: publish-library

# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7

# - name: Bump version patch
# run: |
Expand Down Expand Up @@ -381,11 +379,10 @@ jobs:
# gpg -d --passphrase "${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" --batch release.keystore.asc > release.keystore

# - name: Build Android demo app
# uses: eskatos/gradle-command-action@v1
# uses: gradle/gradle-build-action@v3
# with:
# arguments: ':sample-showcase:assembleRelease -DversionName=${{ env.NEW_VERSION }} -DversionCode=${{ github.run_number }} -Pandroid.injected.signing.store.file=/home/runner/work/fluentui-system-icons/fluentui-system-icons/release.keystore -Pandroid.injected.signing.store.password=${{ secrets.ANDROID_KEYSTORE_PASSWORD }} -Pandroid.injected.signing.key.alias=${{ secrets.ANDROID_KEYSTORE_ALIAS }} -Pandroid.injected.signing.key.password=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}'
# build-root-directory: android
# wrapper-directory: android

# - name: Publish apk to App Center
# uses: wzieba/AppCenter-Github-Action@v1.0.0
Expand Down
Loading