Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/docker.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- name: 'Set up Docker Buildx'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4.1.0
- name: 'Generate build number'
run: |
BUILD_NUMBER=$(git rev-list --all --count)
echo "BUILD_NUMBER=$BUILD_NUMBER" >> $GITHUB_ENV
echo "This build is tagged as $BUILD_NUMBER on $GITHUB_REF"
- name: 'Log in to the Container registry'
uses: docker/login-action@v4
uses: docker/login-action@v4.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 'Extract metadata (tags, labels) for Docker'
id: metadata
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6.1.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: 'Build and Push'
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.2.0
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fastlane.lane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
lane: ${{ steps.fastlane_lane.outputs.lane }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: Compute the correct Fastlane lane
id: fastlane_lane
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase.function.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Decrypt secret configuration'
run: ./.github/scripts/decrypt_secret.sh
env:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: 'Check secret configuration'
run: ./.github/scripts/check_secrets_decryption.sh
- name: 'Setup Node / NPM'
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ inputs.node_version }}
cache: 'npm'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase.function.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
name: 'Deploy Firebase functions'
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Decrypt secret configuration'
run: ./.github/scripts/decrypt_secret.sh
env:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: 'Check secret configuration'
run: ./.github/scripts/check_secrets_decryption.sh
- name: 'Setup Node / NPM'
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ inputs.node_version }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flutter.analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: 'Setup flutter action'
uses: subosito/flutter-action@v2.23.0
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/flutter.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: 'Decrypt secret configuration'
run: ./.github/scripts/decrypt_secret.sh
env:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: 'Check secret configuration'
run: ./.github/scripts/check_secrets_decryption.sh
- name: 'Set up JAVA'
uses: actions/setup-java@v5
uses: actions/setup-java@v5.2.0
with:
distribution: 'zulu'
java-version: ${{ inputs.java_version }}
Expand All @@ -72,7 +72,7 @@ jobs:
- name: 'Build Android APK'
run: flutter build apk --dart-define=FLAVOR=${{ inputs.flutter_flavor }} --build-number=${{ inputs.build_number }} --build-name=${{ inputs.build_name }} --split-per-abi
- name: 'Save build results (apk)'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: 'android-apk'
path: build/app/outputs/apk/release/*.apk
Expand All @@ -82,15 +82,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: 'Decrypt secret configuration'
run: ./.github/scripts/decrypt_secret.sh
env:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: 'Check secret configuration'
run: ./.github/scripts/check_secrets_decryption.sh
- name: 'Set up JAVA'
uses: actions/setup-java@v5
uses: actions/setup-java@v5.2.0
with:
distribution: 'zulu'
java-version: ${{ inputs.java_version }}
Expand All @@ -105,7 +105,7 @@ jobs:
- name: 'Build Android App Bundle'
run: flutter build appbundle --dart-define=FLAVOR=${{ inputs.flutter_flavor }} --build-number=${{ inputs.build_number }} --build-name=${{ inputs.build_name }}
- name: 'Save build results (apk)'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: 'android-aab'
path: build/app/outputs/bundle/release/*.aab
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flutter.format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: 'Setup flutter action'
uses: subosito/flutter-action@v2.23.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flutter.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- name: 'Decrypt secret configuration'
Expand All @@ -28,7 +28,7 @@ jobs:
- name: 'Check secret configuration'
run: ./.github/scripts/check_secrets_decryption.sh
- name: 'Download Artifact'
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
name: 'android-aab'
- name: 'Setup Ruby'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flutter.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: 'Decrypt secret configuration'
run: ./.github/scripts/decrypt_secret.sh
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global.labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Set labels on Pull Request'
steps:
- uses: actions/labeler@v6
- uses: actions/labeler@v6.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true
8 changes: 4 additions & 4 deletions .github/workflows/global.page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
name: 'Deploy Github page'
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
- name: Setup Pages
uses: actions/configure-pages@v6
uses: actions/configure-pages@v6.0.0
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
uses: actions/upload-pages-artifact@v5.0.0
with:
path: ${{ inputs.path }}
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5
uses: actions/deploy-pages@v5.0.0
2 changes: 1 addition & 1 deletion .github/workflows/global.release.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
revision_name: ${{ steps.revision.outputs.revision_name }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- name: 'Extract version'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/global.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: 'Craft the Changelog'
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- name: 'Compute since and excluded tag'
Expand All @@ -44,7 +44,7 @@ jobs:
excludeTagsRegex: ${{ env.EXCLUDE_TAGS_REGEX }}
addSections: ${{ env.NEW_SECTIONS }}
- name: 'Upload CHANGELOG.md'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: changelog
path: CHANGELOG.md
Expand All @@ -54,17 +54,17 @@ jobs:
needs: [changelog]
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- name: 'Download CHANGELOG artifacts'
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
path: changelog
name: changelog
- name: 'Download builds artifacts'
if: ${{ inputs.artifacts_pattern != '' }}
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
pattern: ${{ inputs.artifacts_pattern }}
path: build-artifacts
Expand All @@ -78,7 +78,7 @@ jobs:
body_path: changelog/CHANGELOG.md
- name: 'Generate Github release with build artifacts'
if: ${{ inputs.artifacts_pattern != '' }}
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3.0.0
with:
prerelease: ${{ endsWith(github.ref, inputs.prerelease_suffix) }}
name: '${{ github.ref_name }} 🚀'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
arch: amd64
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Setup Go action'
uses: actions/setup-go@v6.4.0
with:
go-version: ${{ inputs.go_version }}
- name: 'Go build (matrix)'
run: go build -o ${{ github.event.repository.name }}_${{ matrix.os_small }}_${{ matrix.arch }} -v
- name: 'Upload artifact'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: ${{ github.event.repository.name }}_binary_${{ matrix.os_small }}_${{ matrix.arch }}
path: ${{ github.event.repository.name }}_${{ matrix.os_small }}_${{ matrix.arch }}
4 changes: 2 additions & 2 deletions .github/workflows/go.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Setup Go action'
uses: actions/setup-go@v6.4.0
with:
go-version: ${{ inputs.go_version }}
- name: 'Run linters'
uses: wearerequired/lint-action@v2
uses: wearerequired/lint-action@v2.3.0
with:
gofmt: true
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/go.list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Setup Go action'
uses: actions/setup-go@v6.4.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Setup Go action'
uses: actions/setup-go@v6.4.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repo.push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3
- name: 'Setup Go action'
uses: actions/setup-go@v6.4.0
with:
Expand Down
Loading