diff --git a/.github/workflows/cd-workflow.yml b/.github/workflows/cd-workflow.yml index d890b937..4e035991 100644 --- a/.github/workflows/cd-workflow.yml +++ b/.github/workflows/cd-workflow.yml @@ -20,7 +20,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v3 diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index a2f8c35b..741ff6e7 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Configure our node environment according to matrix - name: Setup node ${{ matrix.node-version }} on ${{ matrix.os }} @@ -55,7 +55,7 @@ jobs: url: https://test.company.com steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Add here the download-artifact step diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index aaed4921..44a7c1f1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/environments-secrets.yml b/.github/workflows/environments-secrets.yml index 70478a5d..9e405dd9 100644 --- a/.github/workflows/environments-secrets.yml +++ b/.github/workflows/environments-secrets.yml @@ -35,7 +35,7 @@ jobs: - run: echo "Run id = ${{ github.run_id }}" - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Step that uses the DEV environment run: echo "Deployment to ${{ env.URL1 }}..." @@ -57,7 +57,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Step that uses the TEST environment run: echo "Deployment to ${{ env.DOCS_URL }}..." @@ -82,7 +82,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Step that uses the PROD environment run: echo "Deployment to ${{ env.PROD_URL }}..." diff --git a/.github/workflows/gh-actions-usage-report.yml b/.github/workflows/gh-actions-usage-report.yml index a12c1e92..370d6c10 100644 --- a/.github/workflows/gh-actions-usage-report.yml +++ b/.github/workflows/gh-actions-usage-report.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get Token id: get_workflow_token diff --git a/.github/workflows/gh-dependency-review.yml b/.github/workflows/gh-dependency-review.yml index d2154536..c83d730a 100644 --- a/.github/workflows/gh-dependency-review.yml +++ b/.github/workflows/gh-dependency-review.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Dependency Review' uses: actions/dependency-review-action@v3 \ No newline at end of file diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index b4aada62..e8540e80 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -11,7 +11,7 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/required-workflow.yml b/.github/workflows/required-workflow.yml index 522f9a05..df56d39a 100644 --- a/.github/workflows/required-workflow.yml +++ b/.github/workflows/required-workflow.yml @@ -11,7 +11,7 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/simple-workflow.yml b/.github/workflows/simple-workflow.yml index 86a6c599..47f9d8e9 100644 --- a/.github/workflows/simple-workflow.yml +++ b/.github/workflows/simple-workflow.yml @@ -25,7 +25,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 1cbfcdd8..9ecebd6e 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -40,7 +40,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/use-custom-actions.yml b/.github/workflows/use-custom-actions.yml index c0cf24cb..55beb2bf 100644 --- a/.github/workflows/use-custom-actions.yml +++ b/.github/workflows/use-custom-actions.yml @@ -15,7 +15,7 @@ jobs: js-custom-actions: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: echo "🎉 Running the JS actions" @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: echo "🎉 Running the Docker actions"