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

Specify GitHub Action minor, patch version #711

Merged
merged 6 commits into from
Nov 12, 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
4 changes: 2 additions & 2 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
- uses: actions/checkout@v4.2.2
- uses: reviewdog/action-actionlint@v1.57.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
build_bit: ['BUILD_64BIT=OFF', 'BUILD_64BIT=ON']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: checkout C2A core
if: contains(matrix.use_c2a, 'ON')
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
path: c2a-core
repository: ut-issl/c2a-core
Expand All @@ -50,7 +50,7 @@ jobs:
run: setup.bat

- name: Configure build for x86
uses: ilammy/msvc-dev-cmd@v1
uses: ilammy/msvc-dev-cmd@v1.13.0
with:
arch: amd64_x86

Expand All @@ -61,7 +61,7 @@ jobs:

- name: cache extlib
id: cache-extlib
uses: actions/cache@v4
uses: actions/cache@v4.1.2
with:
key: extlib-${{ runner.os }}-${{ hashFiles('./ExtLibraries/**') }}-${{ matrix.build_bit }}
path: ./ExtLibraries
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
build_bit: ['BUILD_64BIT=OFF', 'BUILD_64BIT=ON']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: set compiler
id: compiler
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:

- name: cache extlib
id: cache-extlib
uses: actions/cache@v4
uses: actions/cache@v4.1.2
with:
key: extlib-${{ runner.os }}-${{ hashFiles('./ExtLibraries/**') }}-${{ matrix.build_bit }}
path: ExtLibraries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2
with:
fetch-depth: 2

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/google-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
compiler: ['gcc-11 g++-11', 'clang clang++']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: checkout the submodules
uses: actions/checkout@v4
uses: actions/checkout@v4.2.2
with:
submodules: recursive

- name: set compiler
id: compiler
run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

- name: cache extlib
id: cache-extlib
uses: actions/cache@v4
uses: actions/cache@v4.1.2
with:
key: extlib-${{ runner.os }}-${{ hashFiles('./ExtLibraries/**') }}}
path: ExtLibraries
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5
uses: crazy-max/ghaction-github-labeler@v5.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v4.2.2
- uses: actions/setup-node@v4.1.0

- name: install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
script_dir: ['./scripts/Plot']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: read python version from Pipfile
id: python-version
Expand Down