Skip to content

Commit

Permalink
Merge pull request #6046 from janekmi/actions_checkout_v4
Browse files Browse the repository at this point in the history
common: update actions/checkout to v4
  • Loading branch information
janekmi authored Mar 12, 2024
2 parents 396c967 + 9c33b7d commit 9819db6
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- {OS: ubuntu, OS_VER: 22.04}
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Rebuild the image
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
issues: read
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# required for `make check-license` to work properly
fetch-depth: 50
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
CXX: clang++
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get -y install pandoc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
TEST_BUILD: [debug, nondebug]
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
]
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pmem.io_doc_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get install libndctl-dev libdaxctl-dev pandoc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pmem_ras.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Variables, such as $ras_runner are hidden on the controller platform as environmental variables.
# 'sed' command is used to filter out IP addresses from the ansible output, it will show up as the 'ras_runner' instead.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pmem_test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
build: [debug, nondebug]

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

- name: Test prepare
uses: ./.github/actions/pmem_test_prepare
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pmem_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
build: [static_debug, static_nondebug]

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

- name: Test prepare
uses: ./.github/actions/pmem_test_prepare
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: [self-hosted, rhel]

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

- name: Test prepare
uses: ./.github/actions/pmem_test_prepare
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: [self-hosted, rhel]

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

- name: Test prepare
uses: ./.github/actions/pmem_test_prepare
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Bandit
run: sudo apt-get -y install bandit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install pmem/valgrind (including dependencies)
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Pull the image
run: cd $WORKDIR && ./pull-or-rebuild-image.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
CONFIG: ["OS=ubuntu OS_VER=22.04"]
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Pull or rebuild the image
run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install required packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_log_calls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- name: Generate log calls' diff
working-directory: ${{ env.WORKING_DIRECTORY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_stack_usage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: pmdk

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
build: ['debug', 'nondebug']
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Pull the image
run: cd $WORKDIR && ./pull-or-rebuild-image.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
TEST_BUILD: ['debug', 'nondebug']
steps:
- name: Clone the git repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50

Expand Down

0 comments on commit 9819db6

Please sign in to comment.