From c32b3d70d90e142c44521d3e16600bb9bf2af6d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 11:04:29 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3.6.0 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/f43a0e5ff2bd294095638e18286ca9a3d1956744...d632683dd7b4114ad314bca15554477dd762a938) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yml | 22 +++++++++++----------- .github/workflows/release-build.yml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index b4d4903e..99b1b81f 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -30,7 +30,7 @@ jobs: architecture: x64 - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 # Install Nox, Poetry and API's dependencies - name: Install Nox @@ -75,7 +75,7 @@ jobs: # ICAT Ansible clone and install dependencies - name: Checkout icat-ansible if: success() - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: repository: icatproject-contrib/icat-ansible ref: master @@ -122,7 +122,7 @@ jobs: cd /home/runner/install/icat.server/ && ./setup -vv install - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 # Prep for using the API for tests - name: Create log file @@ -163,7 +163,7 @@ jobs: python-version: "3.9.7" architecture: x64 - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Install Nox run: pip install nox==2020.8.22 @@ -183,7 +183,7 @@ jobs: python-version: "3.9.7" architecture: x64 - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Install Nox run: pip install nox==2020.8.22 @@ -203,7 +203,7 @@ jobs: python-version: "3.9.7" architecture: x64 - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Install Nox run: pip install nox==2020.8.22 @@ -235,7 +235,7 @@ jobs: # ICAT Ansible clone and install dependencies - name: Checkout icat-ansible - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: repository: icatproject-contrib/icat-ansible ref: master @@ -271,7 +271,7 @@ jobs: ansible-playbook icat-ansible/icatdb_minimal_hosts.yml -i icat-ansible/hosts --vault-password-file icat-ansible/vault_pass.txt -vv - name: Checkout DataGateway API - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Create config.yaml run: cd /home/runner/work/datagateway-api/datagateway-api; cp datagateway_api/config.yaml.example datagateway_api/config.yaml @@ -330,7 +330,7 @@ jobs: run: cd /home/runner/install/icat.server; sudo mysql -uroot -D icatdb < create_triggers_mysql_5_0.sql - name: Checkout DataGateway API (default branch) - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ github.event.repository.default_branch }} @@ -371,7 +371,7 @@ jobs: steps: # Checkout DataGateway API and setup Python - name: Check out repo - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.5.3 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v3.5.3 - name: Setup Python uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 with: @@ -417,7 +417,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out repo - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.5.3 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v3.5.3 - name: Login to Harbor uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0 diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 2f8e3785..058822d7 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 token: ${{ secrets.ADMIN_PAT }}