Skip to content

Commit

Permalink
Bump actions/checkout to v3 per GH deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Oct 19, 2022
1 parent b16166c commit fe062e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Build'
env:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
shell: msys2 {0}
steps:
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Setup'
uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
shell: msys2 {0}
steps:
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Setup'
uses: msys2/setup-msys2@v2
Expand All @@ -197,7 +197,7 @@ jobs:
runs-on: windows-2022
steps:
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Build'
run: |
Expand All @@ -217,7 +217,7 @@ jobs:
runs-on: windows-2019
steps:
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Build'
run: |
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: geos

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
- name: 'Check Out'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get tag
id: tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
- name: 'Check Out 📗'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Hugo Build 🛠'
# ...or replace 'master' with a full version tag, such as: v0.64.1
Expand Down

0 comments on commit fe062e4

Please sign in to comment.