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

ci update ci config #78

Merged
merged 25 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9176e53
build(deps): bump github/codeql-action from 3.26.3 to 3.26.4
dependabot[bot] Aug 22, 2024
ddcdb31
build(deps): bump aminya/setup-cpp from 0.38.3 to 0.39.0
dependabot[bot] Aug 23, 2024
5abf8db
Merge pull request #88 from rodneylab/dependabot/github_actions/githu…
rodneylab Aug 23, 2024
542236a
Merge branch 'main' into dependabot/github_actions/aminya/setup-cpp-0…
rodneylab Aug 23, 2024
9e51122
build(deps): bump crate-ci/typos from 1.23.6 to 1.23.7
dependabot[bot] Aug 23, 2024
d88b32e
Merge pull request #89 from rodneylab/dependabot/github_actions/aminy…
rodneylab Aug 23, 2024
efb1fd8
Merge branch 'main' into dependabot/github_actions/crate-ci/typos-1.23.7
rodneylab Aug 23, 2024
6ad60d4
Merge pull request #90 from rodneylab/dependabot/github_actions/crate…
rodneylab Aug 23, 2024
fa7fa63
build(deps): bump crate-ci/typos from 1.23.7 to 1.24.1
dependabot[bot] Aug 26, 2024
0fb91f0
Merge pull request #91 from rodneylab/dependabot/github_actions/crate…
rodneylab Aug 26, 2024
f54e789
build(deps): bump github/codeql-action from 3.26.4 to 3.26.5
dependabot[bot] Aug 26, 2024
e3770a3
Merge pull request #92 from rodneylab/dependabot/github_actions/githu…
rodneylab Aug 26, 2024
0312513
build(deps): bump github/codeql-action from 3.26.5 to 3.26.6
dependabot[bot] Aug 30, 2024
4fb2d4d
Merge pull request #93 from rodneylab/dependabot/github_actions/githu…
rodneylab Sep 4, 2024
0d4e5d1
build(deps): bump actions/setup-python from 5.1.1 to 5.2.0
dependabot[bot] Sep 4, 2024
89ab209
Merge pull request #94 from rodneylab/dependabot/github_actions/actio…
rodneylab Sep 4, 2024
05eb10b
build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0
dependabot[bot] Sep 4, 2024
09b3c82
Merge pull request #95 from rodneylab/dependabot/github_actions/actio…
rodneylab Sep 4, 2024
03028c7
build(deps): bump crate-ci/typos from 1.24.1 to 1.24.4
dependabot[bot] Sep 4, 2024
e89a612
Merge pull request #97 from rodneylab/dependabot/github_actions/crate…
rodneylab Sep 4, 2024
3d641c2
build(deps): bump crate-ci/typos from 1.24.4 to 1.24.5
dependabot[bot] Sep 5, 2024
f211075
Merge pull request #98 from rodneylab/dependabot/github_actions/crate…
rodneylab Sep 6, 2024
0abe814
build(deps): bump aminya/setup-cpp from 0.39.0 to 0.40.0
dependabot[bot] Sep 6, 2024
40b1759
Merge pull request #99 from rodneylab/dependabot/github_actions/aminy…
rodneylab Sep 6, 2024
740fe51
ci: 🐝 update CI config
rodneylab Sep 6, 2024
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Cpp
uses: aminya/setup-cpp@5962369655effd7210f2da2a84a9dbf2be48ca29 # v0.38.3
uses: aminya/setup-cpp@cb3bbf182c8d22fef33ae35d1d954341bb31ce96 # v0.40.0
with:
clangtidy: true
- name: Configure
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -66,7 +66,7 @@ jobs:
# - name: Autobuild
# uses: github/codeql-action/autobuild@v3
name: Autobuild
uses: github/codeql-action/autobuild@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
uses: github/codeql-action/autobuild@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
- if: matrix.language == 'c-cpp'
name: install
run: sudo apt-get update && sudo apt-get install lcov libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev freeglut3-dev libxinerama-dev libxi-dev
Expand All @@ -78,6 +78,6 @@ jobs:
cmake --build build --config Release
cmake --install build --config Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
disable-telemetry: true
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Cpp
uses: aminya/setup-cpp@5962369655effd7210f2da2a84a9dbf2be48ca29 # v0.38.3
uses: aminya/setup-cpp@cb3bbf182c8d22fef33ae35d1d954341bb31ce96 # v0.40.0
with:
clangtidy: true
cmake: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
egress-policy: audit
disable-telemetry: true
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '>=1.18.0'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: SARIF file
path: results.sarif
retention-days: 5
# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3
uses: github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: Checkout Actions Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Check spelling of entire workspace
uses: crate-ci/typos@935271f0204ebdf61717cf6caac31d8d115f1c14 # v1.23.6
uses: crate-ci/typos@945d407a5fc9097f020969446a16f581612ab4df # v1.24.5
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: install
run: sudo apt-get update && sudo apt-get install lcov libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev freeglut3-dev libxinerama-dev libxi-dev
- name: Setup Cpp
uses: aminya/setup-cpp@5962369655effd7210f2da2a84a9dbf2be48ca29 # v0.38.3
uses: aminya/setup-cpp@cb3bbf182c8d22fef33ae35d1d954341bb31ce96 # v0.40.0
with:
clangtidy: true
- name: configure
Expand Down
Loading