From ca1f63484336fe2374607cf3762510713077beaf Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Sun, 16 Jul 2023 12:30:10 +0200 Subject: [PATCH 1/4] Update ci.yaml switch to actions/checkout@v3 from v2 switch to actions/setup-python@v4 from v2 --- .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 c1a4207..472385a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ 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))" @@ -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/ From 205908022b65caafb9fc40c44dfa0c28704292a8 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Tue, 1 Aug 2023 00:23:10 +0200 Subject: [PATCH 2/4] Update strategy.json set minimup python 3.7 --- strategy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategy.json b/strategy.json index 392ede9..08f4f33 100644 --- a/strategy.json +++ b/strategy.json @@ -5,7 +5,7 @@ "include": [ { "os": "ubuntu-20.04", - "python": "3.6" + "python": "3.7" }, { "os": "ubuntu-latest", From 83a449ba0a7ccabe6e971ebb89d08cb3db48361e Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Fri, 11 Aug 2023 21:16:23 +0200 Subject: [PATCH 3/4] Update strategy.json Undo python 3.7 --- strategy.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategy.json b/strategy.json index 08f4f33..392ede9 100644 --- a/strategy.json +++ b/strategy.json @@ -5,7 +5,7 @@ "include": [ { "os": "ubuntu-20.04", - "python": "3.7" + "python": "3.6" }, { "os": "ubuntu-latest", From 443c0e7f216b2797754851a97af3d06cc5d5d414 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Mon, 28 Aug 2023 17:17:32 -0500 Subject: [PATCH 4/4] Address another deprecation in GitHub Actions --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 472385a..8971f0b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: steps: - 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]