Skip to content

Commit

Permalink
Merge pull request #87 from wnienhaus/fix_gh_deprecations
Browse files Browse the repository at this point in the history
Fix GitHub Deprecation warnings
  • Loading branch information
wnienhaus committed Jun 14, 2023
2 parents 5a73440 + 2e81c92 commit 05fdeb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
make
export OUTDIR=$PWD/build-standard
export PATH=$PATH:$OUTDIR
echo "::set-output name=bin_dir::$OUTDIR"
echo "bin_dir=$OUTDIR" >> $GITHUB_OUTPUT
test $(micropython -c 'print("test")') = "test"
popd
Expand All @@ -56,7 +56,7 @@ jobs:
make
make install-strip
export PATH=$PATH:$PWD/dist/bin
echo "::set-output name=bin_dir::$PWD/dist/bin"
echo "bin_dir=$PWD/dist/bin" >> $GITHUB_OUTPUT
esp32ulp-elf-as --version | grep 'esp32ulp-elf' > /dev/null
popd
Expand Down

0 comments on commit 05fdeb3

Please sign in to comment.