Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SRGDamia1 committed Jul 6, 2022
2 parents 211e176 + 3366538 commit 7d212c3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:

steps:
# check out the Arduino-SDI-12 repo
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: code_docs/Arduino-SDI-12

- name: Restore or Cache pip
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
id: cache_pip
with:
path: ~/.cache/pip
Expand All @@ -37,7 +37,7 @@ jobs:
restore-keys: ${{ runner.os }}-pip-

- name: Restore or Cache PlatformIO and Libraries
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
id: cache_pio
with:
path: ~/.platformio
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Restore or Cache Doxygen
id: cache_doxygen
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
with:
path: doxygen-src
key: ${{ runner.os }}-doxygen-${{ env.DOXYGEN_VERSION }}
Expand All @@ -90,7 +90,7 @@ jobs:

# check out my fork of m.css, for processing Doxygen output
- name: Checkout m.css
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Repository name with owner. For example, actions/checkout
repository: SRGDamia1/m.css
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
]

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

- name: Set variables
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
fi
- name: Restore or Cache pip
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
with:
path: ~/.cache/pip
# if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored
Expand All @@ -48,7 +48,7 @@ jobs:
restore-keys: ${{ runner.os }}-pip-

- name: Restore or Cache PlatformIO and Libraries
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
with:
path: ~/.platformio
# if nothing in the lock files has changed, then it will be a "cache hit" and pip will be restored
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog_reminder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Changelog Reminder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set variables
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Restore or Cache pip
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
with:
path: ~/.cache/pip
# if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify_library_json.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip')"

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

- name: Setup Node.js
uses: actions/setup-node@v1.4.4
uses: actions/setup-node@v3.3.0

- name: Cache Node.js modules
uses: actions/cache@v2.1.4
uses: actions/cache@v3.0.4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
Expand Down

0 comments on commit 7d212c3

Please sign in to comment.