From 641cfdfee30008e12f752953c03d34c41f122ff8 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Tue, 29 Aug 2023 00:28:13 +0200 Subject: [PATCH] Update ci.yaml (#12) switch to actions/checkout@v3 from v2 switch to actions/setup-python@v4 from v2 address another deprecation in GitHub Actions Co-authored-by: Scott K Logan --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c1a4207..8971f0b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,9 +12,9 @@ jobs: strategy: ${{steps.load.outputs.strategy}} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: load - run: echo "::set-output name=strategy::$(echo $(cat strategy.json))" + run: echo "strategy=$(echo $(cat strategy.json))" >> $GITHUB_OUTPUT canary: needs: [setup] @@ -22,16 +22,16 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Choose colcon-notification for a canary build. It has colcon # dependencies and debian patches, so exercieses a fair amount of the # CI action features. repository: colcon/colcon-notification - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{matrix.python}} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: path: colcon_ci - uses: ./colcon_ci/