8000 Merge pull request #87 from wnienhaus/fix_gh_deprecations · Plaque-fcc/micropython-esp32-ulp@05fdeb3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 05fdeb3

Browse files
authored
Merge pull request micropython#87 from wnienhaus/fix_gh_deprecations
Fix GitHub Deprecation warnings
2 parents 5a73440 + 2e81c92 commit 05fdeb3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
with:
2020
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
2121
fetch-depth: 0

.github/workflows/run_tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
tests:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
with:
1111
fetch-depth: 1
1212

@@ -36,7 +36,7 @@ jobs:
3636
make
3737
export OUTDIR=$PWD/build-standard
3838
export PATH=$PATH:$OUTDIR
39-
echo "::set-output name=bin_dir::$OUTDIR"
39+
echo "bin_dir=$OUTDIR" >> $GITHUB_OUTPUT
4040
test $(micropython -c 'print("test")') = "test"
4141
popd
4242
@@ -56,7 +56,7 @@ jobs:
5656
make
5757
make install-strip
5858
export PATH=$PATH:$PWD/dist/bin
59-
echo "::set-output name=bin_dir::$PWD/dist/bin"
59+
echo "bin_dir=$PWD/dist/bin" >> $GITHUB_OUTPUT
6060
esp32ulp-elf-as --version | grep 'esp32ulp-elf' > /dev/null
6161
popd
6262

0 commit comments

Comments
 (0)
0