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

Bump actions/checkout from 3 to 4 #101

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
container: 'quay.io/jdanek/cli-cpp_ubi8_upstream'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare ccache timestamp
id: ccache_cache_timestamp
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
container: 'quay.io/jdanek/cli-cpp_ubi8_epel'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: bazelisk build //:cli-cpp --enable_bzlmod --verbose_failures --sandbox_debug --experimental_ui_max_stdouterr_bytes=104857600 --//:deps=rpms --//:enable_ccache

Expand All @@ -50,7 +50,7 @@ jobs:
matrix:
container: ['quay.io/jdanek/cli-cpp_ubi8_epel', 'quay.io/jdanek/cli-cpp_fedora37_epel']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Build Environment
working-directory: ${{runner.workspace}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- run: sudo apt-get install -y libboost-dev libboost-filesystem-dev libboost-system-dev libboost-regex-dev libqpid-proton-cpp12-dev libqpidcommon-dev libqpidmessaging-dev

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: cli-cpp

Expand Down