Skip to content

Commit

Permalink
ci: update actions/checkout in GHA workflows to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Sep 4, 2023
1 parent b66845e commit decbc57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Debian packages
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Debian packages
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-${{ matrix.version }}
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build with Visual Studio ${{ matrix.version }} - no SQLite
run: |
cd "%GITHUB_WORKSPACE%"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
shell: msys2 {0}
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
Expand Down

0 comments on commit decbc57

Please sign in to comment.