Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update flatbuffers to v24.3.25 #875

Merged
merged 4 commits into from
Aug 2, 2024
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
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every month
interval: "monthly"
2 changes: 1 addition & 1 deletion .github/workflows/cache_cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
actions: write
steps:
- uses: yumemi-inc/clean-cache-action@v1
- uses: yumemi-inc/clean-cache-action@v1.0.5
with:
ref: 'refs/heads/${{ github.head_ref }}'
clean_PR_artifacts:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-builder-from-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt install coreutils p7zip-full qemu-user-static xz-utils

- name: Checkout CustomPiOS
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
repository: 'guysoft/CustomPiOS'
ref: '${{ github.event.inputs.tagCustomPiOS }}'
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
echo "image=$IMAGE" >> $GITHUB_OUTPUT

# artifact upload will take care of zipping for us
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.4
with:
name: ${{ steps.copy.outputs.image }}
path: ${{ steps.copy.outputs.image }}.img.xz
4 changes: 2 additions & 2 deletions .github/workflows/image-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
sudo apt install coreutils p7zip-full qemu-user-static

- name: Checkout CustomPiOS
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7
with:
repository: 'guysoft/CustomPiOS'
path: CustomPiOS
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
echo "image=$IMAGE" >> $GITHUB_OUTPUT

# artifact upload will take care of zipping for us
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.4
with:
name: ${{ steps.copy.outputs.image }}
path: ${{ steps.copy.outputs.image }}.img
34 changes: 17 additions & 17 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
platform: linux
steps:
# checkout
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
submodules: true

Expand All @@ -83,7 +83,7 @@ jobs:
# download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4
uses: actions/cache@v4.0.2
with:
path: .ccache
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -115,15 +115,15 @@ jobs:
# Upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: release-artifact-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}
path: deploy/Hyper*

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Linux-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-installer
path: |
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
NICE_NAME: x64
steps:
# Checkout
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
submodules: true

Expand All @@ -167,7 +167,7 @@ jobs:
# Download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4
uses: actions/cache@v4.0.2
with:
path: build/.ccache
key: macOS-ccache-${{ matrix.NICE_NAME }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -204,15 +204,15 @@ jobs:
# Upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: release-artifact-${{ matrix.JOB_RUNNER }}
path: build/Hyper*.dmg

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Apple_macOS_${{ matrix.NICE_NAME }}_DMG_installer
path: build/Hyper*.dmg
Expand All @@ -229,12 +229,12 @@ jobs:
QT_VERSION: 6.5.3
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
submodules: true

- name: Cache Qt
uses: actions/cache@v4
uses: actions/cache@v4.0.2
id: cache-qt-windows
with:
path: ${{ runner.workspace }}/Qt
Expand All @@ -258,7 +258,7 @@ jobs:
# Download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4
uses: actions/cache@v4.0.2
with:
path: build/.ccache
key: ${{ runner.os }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -303,15 +303,15 @@ jobs:
# Upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: release-artifact-windows
path: build/Hyper*

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Windows_x64_setup
path: build/Hyper*.exe
Expand All @@ -337,7 +337,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
if: env.USE_CODEQL == 'true'
with:
submodules: true
Expand All @@ -361,7 +361,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

# generate environment variables
- name: Generate environment variables from version and tag
Expand All @@ -377,15 +377,15 @@ jobs:

# Download artifacts from previous build process
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.8
with:
path: artifacts
pattern: release-artifact-*
merge-multiple: true

# create draft release and upload artifacts
- name: Create draft release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2.0.8
with:
name: HyperHDR ${{ env.VERSION }}
tag_name: ${{ env.TAG }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/upload-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

steps:
# checkout
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
submodules: true

Expand All @@ -78,7 +78,7 @@ jobs:
# download cache
- name: ccache cache files
if: ( env.USE_CACHE == '1' )
uses: actions/cache@v4
uses: actions/cache@v4.0.2
with:
path: .ccache
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
rm -r repo/pool/ArchLinux ||:

- name: Upload artifacts from commit
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: release-artifact-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}
path: repo
Expand All @@ -124,19 +124,19 @@ jobs:

steps:
# Download artifacts from previous build process
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
submodules: false
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.8
with:
path: repo
pattern: release-artifact-*
merge-multiple: true
- name: Display structure of artifacts
run: ls -R repo
- name: Deploy the packages
uses: JamesIves/github-pages-deploy-action@v4
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
repository-name: awawa-dev/awawa-dev.github.io
branch: upload
Expand Down
2 changes: 1 addition & 1 deletion external/flatbuffers
Submodule flatbuffers updated 575 files