diff --git a/.actions-repo b/.actions-repo deleted file mode 160000 index f05347a8bf..0000000000 --- a/.actions-repo +++ /dev/null @@ -1 +0,0 @@ -Subproject commit f05347a8bf982cee38462dda24d45f92647e9b4b diff --git a/.github/workflows/acceptance-tests.yml b/.github/workflows/acceptance-tests.yml index edf217cdb8..8b85c40a8a 100644 --- a/.github/workflows/acceptance-tests.yml +++ b/.github/workflows/acceptance-tests.yml @@ -31,7 +31,7 @@ jobs: persist: ${{ steps.deploy-comment.outputs.persist}} steps: - id: deploy-comment - uses: SwissDataScienceCenter/renku-actions/check-pr-description@v1.1.0 + uses: SwissDataScienceCenter/renku-actions/check-pr-description@v1.2.0 with: string: /deploy pr_ref: ${{ github.event.number }} @@ -43,7 +43,7 @@ jobs: name: renku-ci-rp-${{ github.event.number }} steps: - name: deploy-pr - uses: SwissDataScienceCenter/renku-actions/deploy-renku@v1.1.0 + uses: SwissDataScienceCenter/renku-actions/deploy-renku@v1.2.0 env: DOCKER_PASSWORD: ${{ secrets.RENKU_DOCKER_PASSWORD }} DOCKER_USERNAME: ${{ secrets.RENKU_DOCKER_USERNAME }} @@ -88,7 +88,7 @@ jobs: if: ${{ github.event.action != 'closed' && needs.check-deploy.outputs.pr-contains-string == 'true' && needs.check-deploy.outputs.test-enabled == 'true' }} needs: [check-deploy, deploy-pr] steps: - - uses: SwissDataScienceCenter/renku-actions/test-renku@v1.1.0 + - uses: SwissDataScienceCenter/renku-actions/test-renku@v1.2.0 with: kubeconfig: ${{ secrets.RENKUBOT_DEV_KUBECONFIG }} renku-release: renku-ci-rp-${{ github.event.number }} @@ -103,7 +103,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: renku teardown - uses: SwissDataScienceCenter/renku-actions/cleanup-renku-ci-deployments@v1.1.0 + uses: SwissDataScienceCenter/renku-actions/cleanup-renku-ci-deployments@v1.2.0 env: HELM_RELEASE_REGEX: "^renku-ci-rp-${{ github.event.number }}$" GITLAB_TOKEN: ${{ secrets.DEV_GITLAB_TOKEN }} diff --git a/.github/workflows/cheatsheet.yml b/.github/workflows/cheatsheet.yml index bac68572c9..b22c231108 100644 --- a/.github/workflows/cheatsheet.yml +++ b/.github/workflows/cheatsheet.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest if: "'refs/heads/master' != github.ref && 'refs/heads/develop' != github.ref && !startsWith(github.ref, 'refs/tags/')" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: Set up Python 3.9 uses: actions/setup-python@v1 diff --git a/.github/workflows/combine-dependabot-updates.yml b/.github/workflows/combine-dependabot-updates.yml index 250823b366..e080bc69d4 100644 --- a/.github/workflows/combine-dependabot-updates.yml +++ b/.github/workflows/combine-dependabot-updates.yml @@ -6,7 +6,7 @@ jobs: combine-prs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 token: "${{ secrets.RENKUBOT_GITHUB_TOKEN }}" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index b046d8f55c..ff7b306556 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -7,6 +7,6 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4.0.1 + - uses: actions/labeler@v4.0.2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/publish_shacl.yml b/.github/workflows/publish_shacl.yml index b41090bb46..087f06366e 100644 --- a/.github/workflows/publish_shacl.yml +++ b/.github/workflows/publish_shacl.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f4be0eda6..137c06f702 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: create-release-pr: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 token: "${{ secrets.RENKUBOT_GITHUB_TOKEN }}" diff --git a/.github/workflows/semantic_pr.yml b/.github/workflows/semantic_pr.yml index fc04f24e93..1dab996008 100644 --- a/.github/workflows/semantic_pr.yml +++ b/.github/workflows/semantic_pr.yml @@ -10,6 +10,6 @@ jobs: main: runs-on: ubuntu-latest steps: - - uses: amannn/action-semantic-pull-request@v4.5.0 + - uses: amannn/action-semantic-pull-request@v4.6.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test_deploy.yml b/.github/workflows/test_deploy.yml index fe6d134ef7..689116f94e 100644 --- a/.github/workflows/test_deploy.yml +++ b/.github/workflows/test_deploy.yml @@ -47,7 +47,7 @@ jobs: style-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: Set up Python 3.8 uses: actions/setup-python@v4 @@ -96,7 +96,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -135,7 +135,7 @@ jobs: mypy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: Set up Python 3.8 uses: actions/setup-python@v4 @@ -173,7 +173,7 @@ jobs: test-distro: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -215,7 +215,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -283,7 +283,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -357,7 +357,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -431,7 +431,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -499,7 +499,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -535,7 +535,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -578,7 +578,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -620,7 +620,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -655,7 +655,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -746,7 +746,7 @@ jobs: max-parallel: 3 matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -836,7 +836,7 @@ jobs: matrix: ${{fromJson(needs.set-matrix.outputs.matrix)}} if: "startsWith(github.ref, 'refs/tags/') || endsWith(github.ref, github.event.repository.default_branch)" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -886,7 +886,7 @@ jobs: runs-on: ubuntu-latest if: "startsWith(github.ref, 'refs/tags/')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -922,7 +922,7 @@ jobs: runs-on: ubuntu-latest if: "startsWith(github.ref, 'refs/tags/')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 ref: "develop" @@ -950,7 +950,7 @@ jobs: test-macos-service, ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 - name: build images run: make docker-tag - name: Docker Login @@ -978,7 +978,7 @@ jobs: ] if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: set up environment variables @@ -986,7 +986,7 @@ jobs: echo "GIT_USER=Renku Bot" >> $GITHUB_ENV echo "GIT_EMAIL=renku@datascience.ch" >> $GITHUB_ENV - name: Push chart and images - uses: SwissDataScienceCenter/renku-actions/publish-chart@v1.1.0 + uses: SwissDataScienceCenter/renku-actions/publish-chart@v1.2.0 env: CHART_NAME: renku-core GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} @@ -995,7 +995,7 @@ jobs: - name: Wait for chart to be available run: sleep 120 - name: Update component version - uses: SwissDataScienceCenter/renku-actions/update-component-version@v1.1.0 + uses: SwissDataScienceCenter/renku-actions/update-component-version@v1.2.0 env: CHART_NAME: renku-core GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} diff --git a/.github/workflows/test_publish.yml b/.github/workflows/test_publish.yml index c789f3dd59..47a7745f70 100644 --- a/.github/workflows/test_publish.yml +++ b/.github/workflows/test_publish.yml @@ -16,7 +16,7 @@ jobs: matrix: python-version: [3.7] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* @@ -46,7 +46,7 @@ jobs: python-version: [3.7] if: "startsWith(github.ref, 'refs/tags/') || endsWith(github.ref, github.event.repository.default_branch)" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*