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

refs #12683 - updated GitHub action actions/checkout to v4 #6467

Merged
merged 1 commit into from
Jun 10, 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
2 changes: 1 addition & 1 deletion .github/workflows/CI-cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Set up Cygwin
uses: cygwin/cygwin-install-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Set up MSYS2
uses: msys2/setup-msys2@v2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/CI-unixish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
image: ${{ matrix.image }}

steps:
# we need to stay at v3 for now because Node 20 does not support the older distros
# /__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /__e/node20/bin/node)
- uses: actions/checkout@v3

- name: Install missing software on ubuntu
Expand Down Expand Up @@ -101,6 +103,8 @@ jobs:
image: ${{ matrix.image }}

steps:
# we need to stay at v3 for now because Node 20 does not support the older distros
# /__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /__e/node20/bin/node)
- uses: actions/checkout@v3

- name: Install missing software on ubuntu
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/CI-unixish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

# coreutils contains "g++" (default is "c++") and "nproc"
- name: Install missing software on macos
Expand All @@ -255,7 +255,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install missing software on ubuntu
if: contains(matrix.os, 'ubuntu')
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -502,7 +502,7 @@ jobs:
runs-on: ubuntu-22.04 # run on the latest image only

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Set up Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
PCRE_VERSION: 8.45

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

- name: Set up Python 3.12.3
if: matrix.config == 'release'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
convert_via_pandoc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: |
mkdir output
Expand All @@ -43,7 +43,7 @@ jobs:
manpage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install missing software on ubuntu
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
QT_VERSION: 6.7.0

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

- name: Install missing software
run: |
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 @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install missing software on ubuntu
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: false # ${{ github.repository_owner == 'danmar' }}

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcheck-premium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# FIXME: enable after update
if: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download cppcheckpremium
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04

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

- name: Cache uncrustify
uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
QT_VERSION: 6.7.0

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

- name: Install missing software on debian/ubuntu
if: contains(matrix.image, 'debian')
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
QT_VERSION: 6.7.0

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

- name: Install missing software
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
QT_VERSION: 5.15.2

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

- name: Set up Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scriptcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-20.04

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
fail-fast: false

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

- name: Restore Cppcheck
uses: actions/cache@v4
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: run dmake
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/selfcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
QT_VERSION: 6.7.0

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

- name: Install missing software
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04

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

- name: ccache
uses: hendrikmuhs/[email protected]
Expand Down
Loading