Skip to content

Commit

Permalink
Use actions/checkout@master everywhere
Browse files Browse the repository at this point in the history
...rather than the now outdated v3
  • Loading branch information
tcbrindle committed Jan 25, 2024
1 parent f31a1c8 commit 829db1c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@master

- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master
- name: Build documentation with Sphinx
uses: ammaraskar/sphinx-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-single-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@master
with:
token: ${{ secrets.PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
brew link --force binutils
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master

- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
brew install llvm@17 ninja
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master

- name: Create Build Environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/santizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
brew link --force binutils
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master

- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build_type: [Debug, Release]

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

- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
Expand Down

0 comments on commit 829db1c

Please sign in to comment.