diff --git a/.github/workflows/defaultLabels.yml b/.github/workflows/defaultLabels.yml index 4a366a50..4163d7f7 100644 --- a/.github/workflows/defaultLabels.yml +++ b/.github/workflows/defaultLabels.yml @@ -13,7 +13,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/stale@v3 + - uses: actions/stale@v9 name: Setting issue as idle with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -24,7 +24,7 @@ jobs: operations-per-run: 100 exempt-issue-labels: 'backlog' - - uses: actions/stale@v3 + - uses: actions/stale@v9 name: Setting PR as idle with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 94b15f4a..85264bdc 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -20,7 +20,7 @@ jobs: kubernetes-version: 1.22.3 driver: 'none' timeout-minutes: 3 - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - id: action-npm-build name: npm install and build run: | @@ -64,7 +64,7 @@ jobs: kubernetes-version: 1.22.3 driver: 'none' timeout-minutes: 3 - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - id: action-npm-build name: npm install and build run: | diff --git a/.github/workflows/prettify-code.yml b/.github/workflows/prettify-code.yml index e595af41..f134cbed 100644 --- a/.github/workflows/prettify-code.yml +++ b/.github/workflows/prettify-code.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Enforce Prettier - uses: actionsx/prettier@v2 + uses: actionsx/prettier@v3 with: args: --check . diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 79cfe0fc..86281b1f 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -11,7 +11,7 @@ jobs: name: Run Unit Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: npm install id: npm-install run: |