From 76f5bf24b549bfd1a38ca1046c4c0f2e363cc898 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Wed, 4 Oct 2023 18:34:12 +0200 Subject: [PATCH] Update ci.yaml (#130) - use actions/checkout@v3 - use actions/setup-python@v4 - address another workflow deprecation in GitHub Actions Co-authored-by: Scott K Logan --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 36bb458..de832e0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,11 +12,11 @@ jobs: strategy: ${{steps.load.outputs.strategy}} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: colcon/ci - id: load - run: echo "::set-output name=strategy::$(echo $(cat strategy.json))" + run: echo "strategy=$(echo $(cat strategy.json))" >> $GITHUB_OUTPUT pytest: needs: [setup] @@ -24,8 +24,8 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: ${{matrix.python}} - uses: colcon/ci@v1