From 8cecb3c710bf17f5dde282271939c5f24c5d2f83 Mon Sep 17 00:00:00 2001 From: Moritz-Alexander-Kern Date: Thu, 27 Oct 2022 13:47:32 +0200 Subject: [PATCH 1/3] update from set-output command to GITHUB_OUTPUT --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 98deb5f28..cdd45f12b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -68,7 +68,7 @@ jobs: # used to reset cache every month - name: Get current year-month id: date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 @@ -129,7 +129,7 @@ jobs: steps: - name: Get current year-month id: date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 @@ -198,7 +198,7 @@ jobs: steps: - name: Get current year-month id: date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -254,7 +254,7 @@ jobs: steps: - name: Get current year-month id: date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -368,7 +368,7 @@ jobs: - name: Get current year-month id: date - run: echo "::set-output name=date::$(date +'%Y-%m')" + run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 From 7e94f96c3cd7fb8653dcdaeea7ffdd63459ef8bc Mon Sep 17 00:00:00 2001 From: Moritz-Alexander-Kern Date: Thu, 27 Oct 2022 13:55:05 +0200 Subject: [PATCH 2/3] update to setup-miniconda v2.1.1 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cdd45f12b..53e7b4322 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -139,7 +139,7 @@ jobs: path: ~/conda_pkgs_dir key: ${{ runner.os }}-conda-${{hashFiles('requirements/environment.yml') }}-${{ hashFiles('**/CI.yml') }}-${{ steps.date.outputs.date }} - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v2.1.1 with: auto-update-conda: true python-version: ${{ matrix.python-version }} From 9f8030648ea6c46c4748136311bc4b1cbd0e73ac Mon Sep 17 00:00:00 2001 From: Moritz-Alexander-Kern Date: Mon, 14 Nov 2022 14:17:29 +0100 Subject: [PATCH 3/3] update setup-miniconda to v2.2.0 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 53e7b4322..096a056c7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -139,7 +139,7 @@ jobs: path: ~/conda_pkgs_dir key: ${{ runner.os }}-conda-${{hashFiles('requirements/environment.yml') }}-${{ hashFiles('**/CI.yml') }}-${{ steps.date.outputs.date }} - - uses: conda-incubator/setup-miniconda@v2.1.1 + - uses: conda-incubator/setup-miniconda@v2.2.0 with: auto-update-conda: true python-version: ${{ matrix.python-version }}