Skip to content

Commit

Permalink
actions UPDATE always use latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvasko committed Jul 4, 2024
1 parent 7f28415 commit fd20a50
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main

- name: Deps-packages
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Deps-packages
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
cmake -DCMAKE_INCLUDE_PATH=$RUNNER_TEMP/include -DCMAKE_LIBRARY_PATH=$RUNNER_TEMP/lib ..
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@main
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
Expand All @@ -77,6 +77,6 @@ jobs:
make -j2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@main
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/devel-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main

- name: Deps-packages
shell: bash
Expand Down

0 comments on commit fd20a50

Please sign in to comment.