aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordependabot[bot]2023-04-29 18:28:08 +0000
committerVaiTon2023-04-29 18:35:19 +0000
commit73ed9e5ad4f0f6e39a130e01c41307f3b453c31e (patch)
treeedcf20e11192eb3c14cd4ec65c8f12e4463627b7 /.github/workflows
parent6937ef09dfc2fbad6ba13815ae55bb2d32679fb5 (diff)
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/deploy.yml2
-rw-r--r--.github/workflows/test.yml6
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 006e3e5..b702f85 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -14,7 +14,7 @@ jobs:
packages: write
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v1
with:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 0b5d5be..512e29d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -20,7 +20,7 @@ jobs:
ports:
- 27017:27017
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
@@ -38,7 +38,7 @@ jobs:
run:
working-directory: frontend
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
@@ -53,7 +53,7 @@ jobs:
env:
COMPOSE_FILE: .github/docker/docker-compose.yml
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Pull docker images
run: docker-compose pull mongo
- name: Build docker backend